Skip to content

Quick Start

Get started quickly with the most commonly used commands and reference materials.

Most Used Commands

Docker Quick Commands

bash
# List all containers
docker container list --all

# Start a container
docker container start <container_name>

# View logs
docker logs --follow <container_name>

# Execute shell in container
docker container exec -it <container_name> /bin/bash

See full Docker reference →

Git Quick Commands

bash
# Stash specific file
git stash push -m "message" -- file.txt

# Stash including untracked files
git stash push -m "message" -u

# Apply specific stash
git stash apply stash@{0}

See full Git reference →

Cross-Platform Commands

TaskLinux/MacWindows PowerShell
List environment variablesprintenvdir env:
Show specific variableecho $JAVA_HOME$env:JAVA_HOME
Find filefind ./ -iname "*file*"dir -Recurse file.txt

See full cross-platform reference →

External Cheatsheet Resources

Quick access to excellent external cheatsheet collections:

General Programming

Specialized Resources

Advanced Topics

Browse by Category

Choose a category to explore detailed references:

  • Platforms - Windows, Linux, and cross-platform commands
  • Tools - Git, Docker, .NET, FFMPEG
  • Editors - VS Code configuration and LSP shortcuts
  • Network & System - SSH, networking, and system configuration

Use the search bar (click or press /) to quickly find specific commands or topics across all documentation.

Released under the MIT License.