Do you have a tip you’d like added ? Post in the comments below or send me an email.
What is Git?
By far, the most widely used modern version control system in the world today is Git. Git is a mature, actively maintained open source project originally developed in 2005 by Linus Torvalds, the famous creator of the Linux operating system kernel. A staggering number of software projects rely on Git for version control, including commercial projects as well as open source. Developers who have worked with Git are well represented in the pool of available software development talent and it works well on a wide range of operating systems and IDEs (Integrated Development Environments).
Having a distributed architecture, Git is an example of a DVCS (hence Distributed Version Control System). Rather than have only one single place for the full version history of the software as is common in once-popular version control systems like CVS or Subversion (also known as SVN), in Git, every developer’s working copy of the code is also a repository that can contain the full history of all changes.
In addition to being distributed, Git has been designed with performance, security and flexibility in mind.
On to the Tips…
Basics
- Create empty Git repo in specified directory. Run with no arguments to initialize the current directory as a git repository.
- Clone repo located at
onto local machine. Original repo can be located on the local filesystem or on a remote machine via HTTP or SSH.
- Define author name to be used for all commits in current repo. Devs commonly use –global flag to set config options for current user.
- Stage all changes in
for the next commit. Replace with a to change a specific file.
- Commit the staged snapshot, but instead of launching a text editor, use
as the commit message.
- List which files are staged, unstaged, and untracked.
- Display the entire commit history using the default format. For customization see additional options.
- Show unstaged changes between your index and working directory.
Undoing Changes
- Create new commit that undoes all of the changes made in
, then apply it to the current branch.
- Remove
from the staging area, but leave the working directory unchanged. This unstages a file without overwriting any changes.
- Shows which files would be removed from working directory. Use the -f flag in place of the -n flag to execute the clean.
Rewriting History
- Replace the last commit with the staged changes and last commit combined. Use with nothing staged to edit the last commit’s message.
- Rebase the current branch onto
. can be a commit ID, a branch name, a tag, or a relative reference to HEAD.
- Show a log of changes to the local repository’s HEAD. Add –relative-date flag to show date info or –all to show all refs.
Branches
- List all of the branches in your repo. Add a
argument to create a new branch with the name .
- Create and check out a new branch named
. Drop the -b flag to checkout an existing branch.
- Merge
into the current branch.
Remote Repositories
- Create a new connection to a remote repo. After adding a remote, you can use
as a shortcut for in other commands.
- Fetches a specific
, from the repo. Leave off to fetch all remote refs.
- Fetch the specified remote’s copy of current branch and immediately merge it into the local copy
- Push the branch to
, along with necessary commits and objects. Creates named branch in the remote repo if it doesn’t exist.
Config
- Define the author name to be used for all commits by the current user
- Define the author email to be used for all commits by the current user
- Create shortcut for a Git command. E.g. alias.glog log –graph –oneline will set git glog equivalent to git log –graph –oneline.
- Set text editor used by commands for all users on the machine.
arg should be the command that launches the desired editor (e.g., vi).
- Open the global configuration file in a text editor for manual editing.
Log
- Limit number of commits by
. E.g. git log -5 will limit to 5 commits
- Condense each commit to a single line.
- Display the full diff of each commit.
- Include which files were altered and the relative number of lines that were added or deleted from each of them.
- Search for commits by a particular author.
- Search for commits with a commit message that matches
.
- Show commits that occur between
and . Args can be a commit ID, branch name, HEAD, or any other kind of revision reference.
- Only display commits that have the specified file.
- –graph flag draws a text based graph of commits on left side of commit msgs. –decorate adds names of branches or tags of commits shown.
Diff
- Show difference between working directory and last commit.
- Show difference between staged changes and last commit
- Show difference between two branches,
and
- Show difference between two branches,
and , based on their common anscestor
Reset
- Reset staging area to match most recent commit, but leave the working directory unchanged.
- Reset staging area and working directory to match most recent commit and overwrites all changes in the working directory.
- Move the current branch tip backward to
, reset the staging area to match, but leave the working directory alone.
- Same as previous, but resets both the staging area & working directory to match. Deletes uncommitted changes, and all commits after
.
Rebase
- Interactively rebase current branch onto
. Launches editor to enter commands for how each commit will be transferred to the new base.
Pull
- Fetch the remote’s copy of current branch and rebases it into the local copy. Uses git rebase instead of merge to integrate the branches.
Push
- Forces the git push even if it results in a non-fast-forward merge. Do not use the –force flag unless you’re absolutely sure you know what you’re doing.
- Push all of your local branches to the specified remote
- Tags aren’t automatically pushed when you push a branch or use the –all flag. The –tags flag sends all of your local tags to the remote repo
Tags
- List the local repository’s tags.
- List the local repository’s tags that match a pattern. Use a * as a wildcard.
- Creates a lightweight tag named
as a reference in .git/refs/tags/ , which points to the current commit.
- Creates an (unsigned) annotated tag named
as a reference in .git/refs/tags/ with the attached message , which points to the current commit.
- Delete all tags in a repo on origin.
- Delete all tags in a repo locally.