350 words
2 min read

Git Cheat Sheet

By · Solutions Architect · Docker Captain · CNCF Ambassador · IBM Champion
Cover image for the post '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)#

Terminal window
git config --global user.name "Ada Lovelace"
git config --global user.email "[email protected]"

Creating Repos#

Start a new repo#

Terminal window
git init

Clone an existing repo#

Terminal window
git clone <repo-url>

Making Changes#

Check what’s changed#

Terminal window
git status

Stage changes (individual or all)#

Terminal window
git add <file> # just one
# or
git add . # all changes

Commit with a message#

Terminal window
git commit -m "fix: patch infinite loop in login"

Unstage a file#

Terminal window
git reset HEAD <file>

History & Diffs#

See commit history#

Terminal window
git log

See unstaged changes#

Terminal window
git diff

See staged changes#

Terminal window
git diff --staged

Remotes#

Terminal window
git remote add origin <url>

Push/pull to/from remote#

Terminal window
git push origin <branch>
git pull origin <branch>

Branching#

See, create, switch, and delete branches#

Terminal window
git branch # list branches
git branch <name> # create
# switch to a branch
git checkout <name>
# delete a branch
git branch -d <name>

Merging#

Merge a branch into current one#

Terminal window
git merge <branch>

Stashing#

Save, list, apply, and drop stashes#

Terminal window
git stash # stash current changes
git stash list # see all stashes
git stash apply # reapply latest stash
git stash drop # delete latest stash

Tagging#

Add, delete, and push tags#

Terminal window
git tag <tag>
git tag -a <tag> -m "msg"
git tag -d <tag>
git push --tags

Reverting & Resetting#

Revert a commit (safe)#

Terminal window
git revert HEAD # undo last commit
Terminal window
git revert <commit> # revert specific commit

Reset to a clean state (dangerous)#

Terminal window
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#

Terminal window
git config --global alias.co checkout
git config --global alias.st status
git config --global alias.ci commit
git 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.


Vladimir Mikhalev

Docker Captain  ·  IBM Champion  ·  AWS Community Builder

The Verdict — production-tested analysis on YouTube.

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

Same category
  1. 1
    Docker Health Checks That Cannot Fail — Seventeen Hours Green
    DevOps & Cloud · A Docker health check whose pattern matches the shell running it can never go red. How to find the checks in your fleet that never failed, and prove each one.
  2. 2
    Terraform MCP server GA: the Apply Gate your auditor will ask about
    DevOps & 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.
  3. 3
    Docker supply chain hardening — from Scout D to OpenSSF 7.8 on a 730K-pull image
    DevOps & Cloud · How I hardened a 1M-pull public Docker image from Scout grade D to OpenSSF Scorecard 7.8 — multi-stage build, cosign, SLSA provenance, non-root default.
  4. 4
    Cloudflare Web Analytics on Astro — Why Removing GA4 Unlocked Lighthouse 100
    DevOps & 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.

Random Posts

Random
  1. 1
    Install Firmware for Kernel Drivers on Ubuntu
    SysAdmin & IT Pro · Learn how to install firmware for kernel drivers on Ubuntu using .deb packages to ensure hardware compatibility and system stability.
  2. 2
    Install Ollama Using Docker Compose
    AI & MLOps · Deploy Ollama locally with Docker Compose and Traefik. Step-by-step guide for setting up LLMs with HTTPS, domain routing, and secure container orchestration.
  3. 3
    Install GLPI Using Docker Compose
    Self-Hosting · Learn how to install GLPI using Docker Compose with Traefik and Let's Encrypt. Set up your open-source IT asset management and service desk system step-by-step.
  4. 4
    Install Exchange Server 2019 on Windows Server 2019
    SysAdmin & IT Pro · Step-by-step guide to install Exchange Server 2019 on Windows Server 2019, including prerequisites, Active Directory setup, and admin tips.
Git Cheat Sheet
https://heyvaldemar.com/git-cheat-sheet/
Author
Vladimir Mikhalev
Published
2023-01-20
License
CC BY-NC-SA 4.0