Git Cheat Sheet

Letโs skip the Git theory lecture.
This cheat sheet is for people who already know Git is a version control system and just want the damn commands. Youโve got code to write, bugs to fix, and a production deploy in 6 minutes.
So here it is: everything you need, nothing you donโt.
Setup
Set your name and email (commit author identity)
git config --global user.name "Ada Lovelace"
Creating Repos
Start a new repo
git init
Clone an existing repo
git clone <repo-url>
Making Changes
Check whatโs changed
git status
Stage changes (individual or all)
git add <file> # just one# orgit add . # all changes
Commit with a message
git commit -m "fix: patch infinite loop in login"
Unstage a file
git reset HEAD <file>
History & Diffs
See commit history
git log
See unstaged changes
git diff
See staged changes
git diff --staged
Remotes
Link to a remote repo
git remote add origin <url>
Push/pull to/from remote
git push origin <branch>git pull origin <branch>
Branching
See, create, switch, and delete branches
git branch # list branchesgit branch <name> # create
# switch to a branchgit checkout <name>
# delete a branchgit branch -d <name>
Merging
Merge a branch into current one
git merge <branch>
Stashing
Save, list, apply, and drop stashes
git stash # stash current changesgit stash list # see all stashesgit stash apply # reapply latest stashgit stash drop # delete latest stash
Tagging
Add, delete, and push tags
git tag <tag>git tag -a <tag> -m "msg"git tag -d <tag>git push --tags
Reverting & Resetting
Revert a commit (safe)
git revert HEAD # undo last commit
git revert <commit> # revert specific commit
Reset to a clean state (dangerous)
git reset HEAD # unstage
git reset --hard HEAD # discard all local changes
git reset --hard <commit> # nuke back to old commit
Aliases
Save yourself some keystrokes
git config --global alias.co checkoutgit config --global alias.st statusgit config --global alias.ci commitgit config --global alias.br branch
Thatโs It
Git can get deep, but you donโt need to memorize plumbing commands to be dangerous.
Pin this cheat sheet, use it daily, and add aliases for whatever slows you down.
Now go commit something before someone force-pushes to main
again.
Patreon Exclusives
๐ Join my Patreon and dive deep into the world of Docker and DevOps with exclusive content tailored for IT enthusiasts and professionals. As your experienced guide, I offer a range of membership tiers designed to suit everyone from newbies to IT experts.
Tools I Personally Trust
If youโre building things, breaking things, and trying to keep your digital life a little saner (like every good DevOps engineer), these are two tools that I trust and use daily:
๐ธ Proton VPN - My shield on the internet. It keeps your Wi-Fi secure, hides your IP, and blocks those creepy trackers. Even if Iโm hacking away on free cafรฉ Wi-Fi, I know Iโm safe.
๐ Proton Pass - My password vault. Proper on-device encryption, 2FA codes, logins, secrets - all mine and only mine. No compromises.
These are partner links - you wonโt pay a cent more, but youโll be supporting DevOps Compass. Thanks a ton - it helps me keep this compass pointing the right way ๐
Gear & Books I Trust
๐ Essential DevOps books
๐ฅ๏ธ Studio streaming & recording kit
๐ก Streaming starter kit
Social Channels
๐ฌ YouTube
๐ฆ X (Twitter)
๐จ Instagram
๐ Mastodon
๐งต Threads
๐ธ Facebook
๐ฆ Bluesky
๐ฅ TikTok
๐ป LinkedIn
๐ฃ daily.dev Squad
โ๏ธ Telegram
๐ GitHub
Community of IT Experts
๐พ Discord
Refill My Coffee Supplies
๐ PayPal
๐ Patreon
๐ฅค BuyMeaCoffee
๐ช Ko-fi
๐ GitHub
โก Telegram Boost
๐ Bitcoin (BTC): bc1q2fq0k2lvdythdrj4ep20metjwnjuf7wccpckxc
๐น Ethereum (ETH): 0x76C936F9366Fad39769CA5285b0Af1d975adacB8
๐ช Binance Coin (BNB): bnb1xnn6gg63lr2dgufngfr0lkq39kz8qltjt2v2g6
๐ Litecoin (LTC): LMGrhx8Jsx73h1pWY9FE8GB46nBytjvz8g
Is this content AI-generated?
No. Every article on this blog is written by me personally, drawing on decades of hands-on IT experience and a genuine passion for technology.
I use AI tools exclusively to help polish grammar and ensure my technical guidance is as clear as possible. However, the core ideas, strategic insights, and step-by-step solutions are entirely my own, born from real-world work.
Because of this human-and-AI partnership, some detection tools might flag this content. You can be confident, though, that the expertise is authentic. My goal is to share road-tested knowledge you can trust.