Git Cheat Sheet - A Collection of the Most Useful Commands

By Cody Arsenault
Updated on May 7, 2023
Git Cheat Sheet - A Collection of the Most Useful Commands

If you're a developer, you're probably already familiar with Git, the widely used version control system for tracking changes in code. Whether you're a beginner or an experienced user, it's always useful to have a cheat sheet with the most useful Git commands at hand. This can help you save time and avoid mistakes in your workflow.

Git is the go-to version control tool for most software developers because it allows them to efficiently manage their source code and track file changes while working with a large team. In fact, Git has so many uses that memorizing its various commands can be a daunting task, which is why we've created this git cheat sheet.

This guide includes an introduction to Git, a glossary of terms and lists of commonly used Git commands. Whether you're having trouble getting started with Git, or if you're an experienced programmer who just needs a refresher, you can refer to this cheat sheet for help.

What is Git?

If you work in web or software development, then you've probably used Git at some point. It remains the most widely used open source distributed version control system over a decade after its initial release.

Unlike other version control systems that store a project's full version history in one place, Git gives each developer their own repository containing the entire history of changes. While extremely powerful, Git has some complicated command line syntax that may be confusing at first. Nonetheless, once broken down, they're all fairly straightforward and easy to understand.

Git glossary

Before you get started with Git, you need to understand some important terms:

Branch

Branches represent specific versions of a repository that "branch out" from your main project. Branches allow you to keep track of experimental changes you make to repositories and revert to older versions.

Commit

A commit represents a specific point in your project's history. Use the commit command in conjunction with the git add command to let git know which changes you wish to save to the local repository. Note that commits are not automatically sent to the remote server.

Checkout

Use the git checkout command to switch between branches. Just enter git checkout followed by the name of the branch you wish to move to, or enter git checkout master to return to the master branch. Mind your commits as you switch between branches.

Fetch

The git fetch command copies and downloads all of a branch's files to your device. Use it to save the latest changes to your repositories. It's possible to fetch multiple branches simultaneously.

Fork

A fork is a copy of a repository. Take advantage of "forking" to experiment with changes without affecting your main project.

The commit at the tip of a branch is called the head. It represents the most current commit of the repository you're currently working in.

Index

Whenever you add, delete or alter a file, it remains in the index until you are ready to commit the changes. Think of it as the staging area for Git. Use the git status command to see the contents of your index. Changes highlighted in green are ready to be committed while those in red still need to be added to staging.

Master

The master is the primary branch of all your repositories. It should include the most recent changes and commits.

Merge

Use the git merge command in conjunction with pull requests to add changes from one branch to another.

Origin

The origin refers to the default version of a repository. Origin also serves as a system alias for communicating with the master branch. Use the command git push origin master to push local changes to the master branch.

Pull

Pull requests represent suggestions for changes to the master branch. If you're working with a team, you can create pull requests to tell the repository maintainer to review the changes and merge them upstream. The git pull command is used to add changes to the master branch.

Push

The git push command is used to update remote branches with the latest changes you've committed.

Rebase

The git rebase command lets you split, move or get rid of commits. It can also be used to combine two divergent branches.

Remote

A remote is a clone of a branch. Remotes communicate upstream with their origin branch and other remotes within the repository.

Repository

Git repositories hold all of your project's files including branches, tags and commits.

Stash

The git stash command removes changes from your index and "stashes" them away for later. It's useful if you wish to pause what you're doing and work on something else for a while. You can't stash more than one set of changes at a time.

Tags

Tags provide a way to keep track of important commits. Lightweight tags simply serve as pointers while annotated tags get stored as full objects.

Upstream

In the context of Git, upstream refers to where you push your changes, which is typically the master branch.

Pull Request

A pull request, or "PR" for short, is a request to merge changes from one branch into another. Pull requests are commonly used in collaborative development workflows.

Cherry-pick

Cherry-pick is a command that allows you to apply a specific commit from one branch to another branch. This is commonly used when you want to apply a bug fix or a specific feature from one branch to another branch.

Diff

Diff is a command that shows the differences between two commits or branches. This is commonly used to see what changes have been made between different versions of the code.

Clone

Cloning is the process of creating a copy of a repository on your local machine. This allows you to work on the code locally and to make changes that can be pushed back to the remote repository.

See the Git docs reference guide for more in depth explanations of Git related terminology.

Commands for configuring Git

Set the username:

git config –global user.name

Set the user email:

git config –global user.email

Create a Git command shortcut:

git config –global alias.

Set the preferred text editor:

git config –system core.editor

Open and edit the global configuration file in the text editor:

git config –global –edit

Enable command line highlighting:

git config –global color.ui auto

Commands for setting up Git repositories

Create an empty repository in the project folder:

git init

Clone a repository from GitHub and add it to the project folder:

git clone (repo URL)

Clone a repository to a specific folder:

git clone (repo URL) (folder)

Display a list of remote repositories with URLs:

git remote -v

Remove a remote repository:

git remote rm (remote repo name)

Retrieve the most recent changes from origin but don't merge:

git fetch

Retrieve the most recent changes from origin and merge:

git pull

Commands for managing file changes

Add file changes to staging:

git add (file name)

Add all directory changes to staging:

git add .

Add new and modified files to staging:

git add -A

Remove a file and stop tracking it:

git rm (file_name)

Untrack the current file:

git rm –cached (file_name)

Recover a deleted file and prepare it for commit:

git checkout <deleted file name>

Display the status of modified files:

git status

Display a list of ignored files:

git ls-files –other –ignored –exclude-standard

Display all unstaged changes in the index and the current directory:

git diff

Display differences between files in staging and the most recent versions:

git diff –staged

Display changes in a file compared to the most recent commit:

git diff (file_name)

Commands for declaring Git commits

Commit changes along with a custom message:

git commit -m "(message)"

Commit and add all changes to staging:

git commit -am "(message)"

Switch to a commit in the current branch:

git checkout <commit>

Show metadata and content changes of a commit:

git show <commit>

Discard all changes to a commit:

git reset –hard <commit>

Discard all local changes in the directory:

git reset –hard Head

Show the history of changes:

git log

Stash all modified files:

git stash

Retrieve stashed files:

git stash pop

Empty stash:

git stash drop

Define a tag:

git tag (tag_name)

Push changes to origin:

git push

Commands for Git branching

Display a list of all branches:

git branch

Make a new branch and switch to it:

git checkout -b <branchname>

Switch to a branch:

git checkout <branchname>

Delete a branch:

git branch -d <branchname>

Merge a different branch with your active branch:

git merge <branchname>

Fetch a branch from the repository:

git fetch remote <branchname>

View merge conflicts between branches:

git diff <sourcebranch> <targetbranch>

Preview changes before merging branches:

git diff <sourcebranch> <targetbranch>

Push all local branches to a designated remote repository:

git push –all

Git tips

Knowing all the Git commands won't get you far if you don't know how to make the most of them. Here are some version control best practices to follow:

1. Commit often

Keep your commits small by committing changes as often as possible. This makes it easier for team members to integrate their work without encountering merge conflicts.

2. Test, then commit

Never commit incomplete work. Always test your changes before sharing your code with others.

3. Use commit messages

Write commit messages to let other team members know what kind of changes you made. Be as descriptive as possible so your teammates know exactly what to look for.

4. Branch out

Take full advantage of branches to help you keep track of different lines of development. Don't be afraid to go out on a limb and create a new branch to experiment with new features and ideas.

5. Regularly merge changes from the main branch

Changes should be regularly merged from the main branch to ensure that your branch stays up-to-date with the latest changes. This makes it easier to merge changes later on and reduces the risk of conflicts.

6. Use feature flags to control feature releases

Feature flags should be used to control the release of new features. This makes it easier to roll back changes if necessary and to control the impact of changes on the codebase.

7. Avoid committing secrets or sensitive information

Secrets or sensitive information, such as passwords or API keys, should not be committed to version control. Instead, use a secure key store or environment variables to manage this information.

8. Use a consistent code formatting style

A consistent code formatting style should be used to ensure that the code is easy to read and understand. This makes it easier for developers to work on the codebase and reduces the risk of errors.

9. Document your code and processes

Code and processes should be well-documented to make it easier for developers to understand the codebase and to onboard new team members. This reduces the risk of errors and improves collaboration.

10. Use Git hooks to automate processes

Git hooks should be used to automate processes, such as running tests or linting code, to ensure that code quality is maintained and to reduce the risk of errors.

11. Settle on a common workflow

There are several different ways to set up your Git workflow. Whichever one you choose, make sure you and your teammates are on the same page from the very beginning.

Summary

Unless you have an amazing photographic memory, memorizing every single Git command would be a challenge, so don't bother trying to learn them all. You'll always have this guide to reference when you need a specific command. As you continue to work with Git, you will encounter new challenges and scenarios that require more advanced commands. You may even want to create your own Git cheat sheet with the commands you use most frequently.

However, with this cheat sheet as your guide, you should be able to navigate most Git-related tasks with ease.

Thank you for reading this blog post. We hope you found this Git cheat sheet helpful and informative. If you have any questions or comments, please feel free to reach out to us.

  • Share

Supercharge your content delivery 🚀

Try KeyCDN with a free 14 day trial, no credit card required.

Get started

Comments

Comment policy: Comments are welcomed and encouraged. However, all comments are manually moderated and those deemed to be spam or solely promotional in nature will be deleted.
  • **bold**
  • `code`
  • ```block```
KeyCDN uses cookies to make its website easier to use. Learn more