DEV Community

Cover image for GIT CHEATSHEET
Danish Saleem
Danish Saleem

Posted on • Updated on

GIT CHEATSHEET

Git is the free and open-source distributed version control system that's responsible for everything GitHub related that happens locally on your computer.

This cheat sheet features the most important and commonly used Git commands for easy reference.

SETUP

Configuring user information used across all local repositories

git config --global user.name "[firstname lastname]"
Set a name that is identifiable for credit when reviewing version history
Enter fullscreen mode Exit fullscreen mode
git config --global user.email "[valid-email]"
Set an email address that will be associated with each history marker
Enter fullscreen mode Exit fullscreen mode
git config --global color.ui auto
Set automatic command line coloring for Git for easy reviewing
Enter fullscreen mode Exit fullscreen mode

SETUP & INIT

Configuring user information, initializing and cloning repositories

git init
Initialize an existing directory as a Git repository
Enter fullscreen mode Exit fullscreen mode
git clone [url]
Retrieve an entire repository from a hosted location via URL
Enter fullscreen mode Exit fullscreen mode

STAGE & SNAPSHOT

Working with snapshots and the Git staging area

git status
Show modified files in the working directory, staged for your next commit
Enter fullscreen mode Exit fullscreen mode
git add [file]
Add a file as it looks now to your next commit (stage
Enter fullscreen mode Exit fullscreen mode
git reset [file]
Unstaged a file while retaining the changes in the working directory
Enter fullscreen mode Exit fullscreen mode
git diff
Diff of what is changed but not staged
Enter fullscreen mode Exit fullscreen mode
git diff --staged
Diff of what is staged but not yet committed
Enter fullscreen mode Exit fullscreen mode
git commit -m “[descriptive message]”
Commit your staged content as a new commit snapshot
Enter fullscreen mode Exit fullscreen mode

BRANCH & MERGE

Isolating work in branches, changing context, and integrating changes

git branch
List your branches. a * will appear next to the currently active branch
Enter fullscreen mode Exit fullscreen mode
git branch [branch-name]
Create a new branch at the current commit
Enter fullscreen mode Exit fullscreen mode
git checkout
Switch to another branch and check it out in your working directory
Enter fullscreen mode Exit fullscreen mode
git merge [branch]
Merge the specified branch’s history into the current one
Enter fullscreen mode Exit fullscreen mode
git log
Show all commits in the current branch’s history
Enter fullscreen mode Exit fullscreen mode

INSPECT & COMPARE

Examining logs, diffs, and object information

git log
Show the commit history for the currently active branch
Enter fullscreen mode Exit fullscreen mode
git log branchB..branchA
Show the commits on branch A that are not on branch B
Enter fullscreen mode Exit fullscreen mode
git log --follow [file]
Show the commits that changed file(s), even across renames
Enter fullscreen mode Exit fullscreen mode
git diff branch B...branch A
Show the diff between what is in branch A that is not in branch B
Enter fullscreen mode Exit fullscreen mode
git show [SHA]
Show any object in Git in human-readable format
Enter fullscreen mode Exit fullscreen mode

TRACKING PATH CHANGES

Versioning file removes and path changes

git rm [file]
Delete the file from the project and stage the removal for commit
Enter fullscreen mode Exit fullscreen mode
git mv [existing-path] [new-path]
Change an existing file path and stage the move
Enter fullscreen mode Exit fullscreen mode
git log --stat -M
Show all commit logs with an indication of any paths that moved
Enter fullscreen mode Exit fullscreen mode

IGNORING PATTERNS

Preventing unintentional staging or committing of files

logs/
*.notes
pattern*/
Save a file with desired patterns as .gitignore with either direct string
matches or wildcard globs.
Enter fullscreen mode Exit fullscreen mode
git config --global core.excludesfile [file]
System-wide ignore pattern for all local repositories
Enter fullscreen mode Exit fullscreen mode

SHARE & UPDATE

Retrieving updates from another repository and updating local repos

git remote add [alias] [url]
Add a git URL as an alias
Enter fullscreen mode Exit fullscreen mode
git fetch [alias]
Fetch down all the branches from that Git remote
Enter fullscreen mode Exit fullscreen mode
git merge [alias]/[branch]
Merge a remote branch into your current branch to bring it up to date
Enter fullscreen mode Exit fullscreen mode
git push [alias] [branch]
Transmit local branch commits to the remote repository branch
Enter fullscreen mode Exit fullscreen mode
git pull
Fetch and merge any commits from the tracking remote branch
Enter fullscreen mode Exit fullscreen mode

REWRITE HISTORY

Rewriting branches, updating commits, and clearing history

git rebase [branch]
Apply any commits of the current branch ahead of the specified one
Enter fullscreen mode Exit fullscreen mode
git reset --hard [commit]
Clear staging area, rewrite working tree from the specified commit
Enter fullscreen mode Exit fullscreen mode

TEMPORARY COMMITS

Temporarily store modified, tracked files to change branches

git stash
Save modified and staged changes
Enter fullscreen mode Exit fullscreen mode
git stash list
List stack-order of stashed file changes
Enter fullscreen mode Exit fullscreen mode
git stash pop
Write working from the top of the stash stack
Enter fullscreen mode Exit fullscreen mode
git stash drop
Discard the changes from the top of the stash stack
Enter fullscreen mode Exit fullscreen mode

Let's connect 💜

Twitter GitHub LinkedIn Stack Overflow Google Discord Dev.to blog

Support me 🤝

BuyMeACoffee

Top comments (6)

Collapse
 
metamark profile image
Mark Vassilevskiy

Hey! I've found your article very useful and would like to offer you cooperation. We've over 50k per week and also, we're building Projects/Startups in different directions. You can add me at Discord: MarkFusion#2903

Collapse
 
marwenshili profile image
Shili Mrawen

super thanks

Collapse
 
daniel0liver profile image
Daniel Oliveira

Thanks for this post, very helpful ;D

you could write another post talking about git tag, pleaseeeeeee!!!

Collapse
 
mrdanishsaleem profile image
Danish Saleem

Okay sure I'll write about git tag

Collapse
 
miladtehrany profile image
Milad Tehrany

Very useful, thanks

Collapse
 
shamolmojumder profile image
Shamol Mojumder

Very helpful