350 words
2 min read
Git Cheat Sheet
By Vladimir Mikhalev · Solutions Architect · Docker Captain · IBM Champion
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 initClone an existing repo
git clone <repo-url>Making Changes
Check what’s changed
git statusStage changes (individual or all)
git add <file> # just one# orgit add . # all changesCommit 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 logSee unstaged changes
git diffSee staged changes
git diff --stagedRemotes
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 stashTagging
Add, delete, and push tags
git tag <tag>git tag -a <tag> -m "msg"git tag -d <tag>git push --tagsReverting & Resetting
Revert a commit (safe)
git revert HEAD # undo last commitgit revert <commit> # revert specific commitReset 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 commitAliases
Save yourself some keystrokes
git config --global alias.co checkoutgit config --global alias.st statusgit config --global alias.ci commitgit config --global alias.br branchThat’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.
The Verdict
Inconvenient truths about shipping in the AI era
Container security, platform engineering, and the agentic shift — tested in production, argued without the hype. The verdict reaches your inbox the moment there's one worth sending.
Related Posts
- 1Terraform MCP server GA: the Apply Gate your auditor will ask aboutDevOps & Cloud · HashiCorp's Terraform MCP server is GA and IBM Bob can write production IaC. ENABLE_TF_OPERATIONS separates a safe assistant from autonomous apply.
- 2Docker supply chain hardening — from Scout D to OpenSSF 7.8 on a 730K-pull imageDevOps & Cloud · How I hardened a 730K-pull public Docker image from Scout grade D to OpenSSF Scorecard 7.8. Multi-stage build, cosign signing, SLSA provenance, non-root default, and the incident that changed how I ship attestations.
- 3Cloudflare Web Analytics on Astro — Why Removing GA4 Unlocked Lighthouse 100DevOps & Cloud · How removing Google Analytics 4 from an Astro site unlocked Lighthouse 100, why Cloudflare Web Analytics replaced it, and what the tradeoffs actually cost.
- 4Platform Engineering — The Complete, Practical Guide to Building Internal Developer Platforms That ScaleDevOps & Cloud · A deep, practical guide to Platform Engineering. Learn how to build internal developer platforms, golden paths, GitOps workflows, and scalable cloud foundations.
Random Posts
- 1Vladimir Mikhalev Recognized by Docker CEOOpinion & Culture · Docker CEO, Scott Johnston, recognizes the extraordinary leadership and contributions of Vladimir Mikhalev.
- 2Install CentOS 7 MinimalSysAdmin & IT Pro · Step-by-step guide to install CentOS 7 Minimal with screenshots. Learn how to configure language, network, partitions, and users for a clean Linux setup.
- 3Inside the Builders Era — How Developers Stay in Control of AI with GitKraken as the Core ToolOpinion & Culture · How developers stay in control of AI in the Builders Era — using expert supervision, clean Git workflows, and GitKraken to keep speed, quality, and reliability.
- 4What is the Cloud?DevOps & Cloud · Explore the history of cloud computing and how SaaS, PaaS, and IaaS models from AWS, Azure, and GCP power today's digital infrastructure.
Git Cheat Sheet
https://heyvaldemar.com/git-cheat-sheet/