Cheat Sheet Generator
Quick reference for common commands. Search, copy, and boost your productivity.
git init
Initialize a new Git repository
git clone <url>
Clone a repository from URL
git status
Check status of working directory
git add <file>
Add file to staging area
git add .
Add all changes to staging
git commit -m 'message'
Commit staged changes
git push origin <branch>
Push commits to remote
git pull
Fetch and merge remote changes
git branch
List all branches
git branch <name>
Create new branch
git checkout <branch>
Switch to branch
git checkout -b <branch>
Create and switch to new branch
git merge <branch>
Merge branch into current
git log
View commit history
git diff
Show changes between commits
git reset --hard
Reset to last commit
git stash
Temporarily save changes
git stash pop
Restore stashed changes
About Cheat Sheet Generator
This searchable cheat sheet provides quick access to commonly used commands for Git, Docker, Tailwind CSS, and npm. Perfect for developers who want a fast reference without leaving their workflow.
Simply search for what you need, click to copy any command, and paste it into your terminal or code editor. All commands are categorized for easy navigation.