vote up 140 vote down star
226

Ok, after seeing this post by PJ Hyett, I have decided to skip to the end and go with git.

So what I need is a beginners practical guide to git. "Beginner" being defined as someone who knows how to handle their compiler, understands to some level what a makefile is, and has touched source control without understanding it very well.

"Practical" being defined as this person doesn't want to get into great detail regarding what git is doing in the background, and doesn't even care (or know) that it's distributed. Your answers might hint at the possibilities, but try to aim for the beginner that wants to keep a 'main' repository on a 'server' which is backed up and secure, and treat their local repository as merely a 'client' resource.

Procedural note: PLEASE pick one and only one of the below topics and answer it clearly and concisely in any given answer. Don't try to jam a bunch of information into one answer. Don't just link to other resources - cut and paste with attribution if copyright allows, otherwise learn it and explain it in your own words (ie, don't make people leave this page to learn a task). Please comment on, or edit, an already existing answer unless your explanation is very different and you think the community is better served with a different explanation rather than altering the existing explanation.

So:

Installation/Setup

Working with the code

Tagging, branching, releases, baselines

Other

Other git beginner's references

Delving into git

I will go through the entries from time to time and 'tidy' them up so they have a consistent look/feel and it's easy to scan the list - feel free to follow a simple "header - brief explanation - list of instructions - gotchas and extra info" template. I'll also link to the entries from the bullet list above so it's easy to find them later.

flag
6  
Perhaps this would be better as community wiki? – CesarB Nov 25 '08 at 0:21
1  
Because the answers being all community wiki would make people less shy about editing other people's answers. – CesarB Nov 25 '08 at 0:42
1  
If one is shy about editing an answer they can leave a comment and have someone else modify the answer if the suggestion is suitable, or the original answerer. There are many low friction ways to introduce accuracy and information, so I'm not too worried someone might avoid contributing for that... – Adam Davis Nov 25 '08 at 0:47
6  
In short, if I make this wiki, then potential answerers will not get rep, and be less inclined to contribute. I want to encourage participation, and giving others the opportunity to gain rep is a perfectly valid way to get them to help. – Adam Davis Jan 8 at 22:57
3  
I agree with Adam, giving up to the community wiki police effectively destroys your question. Stuff will turn into a community wiki once it gets enough traction – Sam Saffron May 21 at 6:00
show 12 more comments

27 Answers

vote up 0 vote down

How do you compare two revisions of a file, or your current file and a previous revision?

Compare command is git diff.

To compare 2 revisions of a file:

$ git diff <commit1> <commit2> <file_name>

That diffs commit1 against commit2; if you change order then files are diffed the other way round, which may not be what you expect...

To compare current staged file against the repository:

$ git diff --staged <file_name>

To compare current unstaged file against the repository:

$ git diff <file_name>
link|flag
vote up 0 vote down

A real good paper for understanding how git works is the git parable. Very recomended!

link|flag
vote up 0 vote down

I've also found Git Internals to be very useful. It is written by Scott Chacon (author of Pro Git, and maintainer of the Git Community Book). What I like about Git Internals is it focuses on the concepts first and then the commands, and being that it is ~100 small pages it is quickly digestible.

link|flag
vote up 1 vote down

How can I create a branch on a remote repository?

Assuming that you have cloned your remote repository from some single remote repository.

# create a new branch locally
git branch name_of_branch
git checkout name_of_branch
# edit/add/remove files    
# ... 
# Commit your changes locally
git add fileName
git commit -m Message
# push changes and new branch to remote repository:
git push origin name_of_branch:name_of_branch
link|flag
vote up 1 vote down

How to track remote branches

Assuming there is a remote repository that you cloned your local repository from and also assuming that there is a branch named 'some_branch' on that remote repository, here is how to track it locally:

# list remote branches
git branch -r

# start tracking one remote branch
git branch --track some_branch origin/some_branch

# change to the branch locally
git checkout some_branch

# make changes and commit them locally
....

# push your changes to the remote repository:
git push
link|flag
vote up 0 vote down

Seriously add the link featured in this stackoverflow -

http://stackoverflow.com/questions/1482824/setup-git-server-with-msysgit-on-windows

from "Tim"

It flawlessly told me how to setup GIT on Windows with MSYSGIT. Incredibly detailed article.

link|flag
Thanks, I added it. – Adam Davis Oct 16 at 12:13
vote up 3 vote down

Getting the latest Code

$ git pull <remote> <branch> # fetches the code and merges it into 
                             # your working directory
$ git fetch <remote> <branch> # fetches the code but does not merge
                              # it into your working directory

$ git pull --tag <remote> <branch> # same as above but fetch tags as well
$ git fetch --tag <remote> <branch> # you get the idea

That pretty much covers every case for getting the latest copy of the code from the remote repository.

link|flag
vote up 0 vote down

I found this post to be very useful to get me started. I still need to read the book and other resources but the post was helpful in, as the title says, "understanding git conceptually". I also recommend taking the Git & GitHub course offered at RubyLearning.

link|flag
1  
Not really the goal of the posters question since he wants this question to work as a one stop shop for new git users. – Jeremy Wall Aug 29 at 1:45
vote up 2 vote down

How do you merge branches?

If you want to merge a branch (e.g. master to release), make sure your current branch is the target branch you'd like to merge into (use git branch or git status to see your current branch).

Then use

git merge master

(where master is the name of the branch you want to merge with the current branch).

If there are any conflicts, you can use

git diff

to see pending conflicts you have to resolve.

link|flag
So how do you resolve conflicts and complete the merge? – Steve Folly Oct 15 at 15:22
There is git mergetool which does a three-way-diff with your favourite tool (gvimdiff, kdiff3 or some more) – Dave Vogt Oct 26 at 13:04
vote up 1 vote down

How do you branch?

The default branch in a git repository is called master.

To create a new branch use

git branch <branch-name>

To see a list of all branches in the current repository type

git branch

If you want to switch to another branch you can use

git checkout <branch-name>

To delete a branch, use

git branch -d <branch-name>
link|flag
2  
you should mention the shortcut git checkout -b <branch-name> which creates a branch and switches to it in one step. It's probably the most common use case for a beginner and even advanced git user. – Jeremy Wall Aug 29 at 1:46
vote up 0 vote down

I got started with the official git tutorial, I think it's practical enough for beginners (I was, and still am, a beginner, by your definition! I barely grasp makefiles, I've only played a bit with svn, etc).

link|flag
vote up 1 vote down

w.r.t. good GUIs/frontends, you may also want to check out qgit which is a cross-platform (linux/win32) repository viewer for git and can be also used as high level frontend for the most common git operations, in fact it can be easily enhanced by so called "custom actions" so that users can provide customized actions.

link|flag
vote up 1 vote down

Checking Out Code

First go to an empty dir, use "git init" to make it a repository, then clone the remote repo into your own.

git clone user@host.com:/dir/to/repo

Wherever you initially clone from is where "git pull" will pull from by default.

link|flag
I think clone does the init step for you removing the need to run init first. git init is really mostly for creating the first repository or for special configurations with multiple remotes that you want to set up different than a standard clone. – Jeremy Wall Aug 29 at 1:51
vote up 2 vote down

Git Reset

Say you make a pull, merge it into your code, and decide you don't like it. Use git-log, or tig, and find the hash of wherever you want to go back to (probably your last commit before the pull/merge) copy the hash, and do:

git-reset --hard <hash>
link|flag
1  
This is the analog to a revert in most other centralized version control systems. – Jeremy Wall Aug 29 at 1:52
vote up 4 vote down

How to install git

On Windows:

Install msysgit

This also installs a cygwin bash shell, so you can use the git in a nicer shell (than cmd.exe), and also includes git-gui (accessible via git gui command, or the Start > All Programs > Git menu)

OS X

Use the git-osx-installer, or you can also install from source

Via a package manager

Install git using your native package manager. For example, on Debian (or Ubuntu):

apt-get install git-core

Or on OS X, via MacPorts:

sudo port install git-core+bash_completion+doc

..or fink:

fink install git

On Red Hat based distros, such as Fedora:

yum install git

In Cygwin the git package can be found under the "devel" section

From source (OS X/Linux/BSD/etc)

In OS X, if you have the Developer Tools installed, you can compile git from source very easily. Download the latest version of git as a .tar.bz or .tar.gz from http://git-scm.com/, and extract it (double click in Finder)

On Linux/BSD/etc it should be much the same. For example, in Debian (and Ubuntu), you need to install the build-essential package via apt

Then in a Terminal, cd to where you extracted the files (Running cd ~/Downloads/git*/ should work), and then run..

./configure && make && sudo make install

This will install git into the default place (/usr/local - so git will be in /usr/local/bin/git)

It will prompt you to enter your password (for sudo), this is so it can write to the /usr/local/ directory, which can only be accessed by the "root" user so sudo is required!

If you with to install it somewhere separate (so gits files aren't mixed in with other tools), use --prefix with the configure command:

./configure --prefix=/usr/local/gitpath
make
sudo make install

This will install the git binary into /usr/local/bin/gitpath/bin/git - so you don't have to type that every time you, you should add into your $PATH by adding the following line into your ~/.profile:

export PATH="${PATH}:/usr/local/bin/gitpath/bin/"

If you do not have sudo access, you can use --prefix=/Users/myusername/bin and install into your home directory. Remember to add ~/bin/ to $PATH

The script x-git-update-to-latest-version automates a lot of this:

This script updates my local clone of the git repo (localy at ~/work/track/git), and then configures, installs (at /usr/local/git-git describe) and updates the /usr/local/git symlink.

This way, I can have /usr/local/git/bin in my PATH and I'm always using the latest version.

The latest version of this script also installs the man pages. You need to tweak your MANPATH to include the /usr/local/git/share/man directory.

link|flag
1  
On Fedora: yum install git. For the GUI run yum install git-gui. – Cristian Ciupitu Sep 12 at 2:17
1  
On Mac, sudo port install git-core+bash_completion+doc – Singletoned Oct 9 at 11:08
vote up 2 vote down

Push and pull changes

In an simplified way, just do git push and git pull. Changes are merged and if there's a conflict git will let you know and you can resolve it manually.

When you first push to a remote repository you need to do a git push origin master (master being the master branch). From then on you just do the git push.

Push tags with git push --tags.

link|flag
vote up 2 vote down

Resource: Definitely check out Scott Chacon's Gitcasts, especially the Railsconf talk.

Github is awesome and also has some helpful guides.

link|flag
vote up 9 vote down

GUIs for git

Git GUI

Included with git - Run git gui from the command line, and the Windows msysgit installer adds it to the Start menu.

Git GUI can do a majority of what you'd need to do with git. Including staging changes, configuring git and repositories, pushing changes, creating/checkout/deleting branches, merging, and many other things.

One of my favourite features is the "stage line" and "stage hunk" shortcuts in the right-click menu, which lets you commit specific parts of a file. You can achieve the same via git add -i, but I find it easier to use.

It isn't the prettiest application, but it works on almost all platforms (being based upon Tcl/Tk)

Screenshots | a screencast

GitK

Also included with git. It is a git history viewer, and lets you visualise a repositories history (including branches, when they are created, and merged). You can view and search commits

Goes together with git-gui nicely

Gitnub

Mac OS X application. Mainly an equivalent of git log, but has some integration with github (like the "Network view")

Looks pretty, and fits with Mac OS X. You can search repositories. The biggest critisism of Gitnub is that it shows history in a linear fashion (a single branch at a time) - it doesn't visualise branching and merging, which can be important with git, although this is a planned improvement.

Download links, change log and screenshots | git repository

GitX

Intends to be a "gitk clone for OS X".

It can visualise non-linear branching history, perform commits, view and search commits, and it has some other nice features like being able to "Quicklook" any file in any revision (press space in the file-list view), export any file (via drag and drop)

Although it is currently still "under development", it is quite usable, and again far better integrated into OS X than git-gui/gitk

Download | Screenshots | git repository

SmartGit

From the homepage:

SmartGit is a front-end for the distributed version control system Git and runs on Windows, Mac OS X and Linux. SmartGit is intended for developers who prefer a graphical user interface over a command line client, to be even more productive with Git — the most powerful DVCS today.

SmartGit hasn't been released yet, but you can download it in its pre-release state from their website.

Big thanks to dbr for elaborating on the git gui stuff.

link|flag
You have some good answers (especially gitcasts, and the push/pull answer), but could I recommend splitting it into a separate answers? The question'er requested that you "don't try to jam a bunch of information into one answer"! – dbr Nov 27 '08 at 13:08
Thanks for elaborating and formatting it much nicer dbr. I'll split the GUIs into a separate answer. – dylanfm Nov 27 '08 at 13:10
1  
Hope I didn't stuff up hyperlinks. I think they're fine. – dylanfm Nov 27 '08 at 13:15
No problem! and all the links seem fine – dbr Nov 27 '08 at 13:32
1  
Also SmartGit is maturing nicely now syntevo.com/smartgit – Steve Folly Oct 15 at 15:26
show 1 more comment
vote up 1 vote down

Console UI - Tig

Installation:

apt-get install tig

Usage

While inside a git repo, type 'tig', to view an interactive log, hit 'enter' on any log to see more information about it. h for help, which lists the basic functionality.

Trivia

"Tig" is "Git" backwards.

link|flag
Shouldn't it be a "Console UI", since "console" and "graphical" are a bit.. contradictory? – dbr Nov 27 '08 at 13:29
it's a lot more graphical than git-log... however, it is a lot lot more interfaceable... – Dean Nov 27 '08 at 14:21
vote up 3 vote down

How do you 'tag' a particular set of revisions

How do you 'mark' 'tag' or 'release' a particular set of revisions for a particular set of files so you can always pull that one later?

Using the git tag command.

To simply "tag" the current revision, you would just run..

git tag -a thetagname
git tag -a 0.1
git tag -a 2.6.1-rc1 -m 'Released on 01/02/03'

To list the current tags, simply run git tag with no arguments, or -l (lower case L):

$ git tag -a thetagname # and enter a message, or use -m 'My tag annotation'
$ git tag -l
thetagname

To delete a tag, you use the -d flag:

$ git tag -d thetagname 
Deleted tag 'thetagname'
$ git tag
[no output]

To tag a specific (previous) commit, you simply do..

git tag [tag name] [revision SHA1 hash]

For example:

git tag 1.1.1 81b15a68c6c3e71f72e766931df4e6499990385b


Note: by default, git creates a "lightweight" tag (basically a reference to a specific revision). The "right" way is to use the -a flag. This will launch your editor asking for a tag message (identical to asking for a commit message, you can also use the -m flag to supply the tag message on the command line). Using an annotated tag creates an object with its own ID, date, tagger (author), and optionally a GPG signature (using the -s tag). For further information on this, see this post

git tag mytagwithmsg -a -m 'This is a tag, with message'

And to list the tags with annotations, use the -n1 flag to show 1 line of each tag message (-n245 to show the first 245 lines of each annotation, and so on):

$ git tag -l -n1
mytagwithmsg    This is a tag, with message

For more information, see the git-tag(1) Manual Page

link|flag
git tag does not create tags by default, just lightweight references. You must use either -a or -s to create a tag object (which things like describe will use): rockstarprogrammer.org/post/2008/… – Dustin Dec 1 '08 at 8:48
Ah, interesting. Thanks, I've updated the answer to reflect this – dbr Dec 1 '08 at 13:00
And how do you tag a previously committed revision? (sorry it's too long so I skimmed through, did I miss something?) – hasen j Apr 6 at 4:03
hasen j: Added info to answer, basically git tag tagname revision_SHA1 – dbr Apr 6 at 13:44
vote up 15 vote down

How do you create a new project/repository?

A git repository is simply a directory containing a special .git directory.

This is different from "centralised" version-control systems (like subversion), where a "repository" is hosted on a remote server, which you checkout into a "working copy" directory. With git, your working copy is the repository.

Simply run git init in the directory which contains the files you wish to track.

For example,

cd ~/code/project001/
git init

This creates a .git (hidden) folder in the current directory.

To make a new project, you would made a new directory and run git init in this:

cd ~/code/
mkdir project002
cd project 002
git init

To check if the current current path is within a git repository, simply run git status - if it's not a repository, it will report "fatal: Not a git repository"

You could also list the .git directory, and check it contains files/directories similar to the following:

$ ls .git
HEAD         config       hooks/       objects/
branches/    description  info/        refs/


If for whatever reason you wish to "de-git" a repository (you wish to stop using git to track that project). Simply remove the .git directory at the base level of the repository.

cd ~/code/project001/
rm -rf .git/

Caution: This will destroy all revision history, all your tags, everything git has done. It will not touch the "current" files (the files you can currently see), but previous changes, deleted files and so on will be unrecoverable!

link|flag
Thank you very much! – Adam Davis Dec 12 '08 at 0:54
1  
Git makes its objects read-only, so you'll want rm -rf .git to obliterate git's database. – jleedev Oct 13 at 1:16
vote up 3 vote down

git status is your friend, use it often. Good for answering questions like:

  • What did that command just do?
  • What branch am I on?
  • What changes am I about to commit, and have I forgotten anything?
  • Was I in the middle of something last time I worked on this project (days, weeks, or perhaps months ago)?

Unlike, say svn status, git status runs nigh-instantly even on large projects. I often found it reassuring while learning git to use it frequently, to make sure my mental model of what was going on was accurate. Now I mostly just use it to remind myself what I've changed since my last commit.

Obviously, it's much more useful if your .gitignore is sanely configured.

link|flag
vote up 7 vote down

How to configure it to ignore files:

The ability to have git ignore files you don't wish it to track is very useful.

To ignore a file or set of files you supply a pattern. The pattern syntax for git is fairly simple, but powerful. It is applicable to all three of the different files I will mention bellow.

  • A blank line ignores no files, it is generally used as a separator.
  • Lines staring with # serve as comments.
  • The ! prefix is optional and will negate the pattern. Any negated pattern that matches will override lower precedence patterns.
  • Supports advanced expressions and wild cards
    • Ex: The pattern: *.[oa] will ignore all files in the repository ending in .o or .a (object and archive files)
  • If a pattern has a directory ending with a slash git will only match this directory and paths underneath it. This excludes regular files and symbolic links from the match.
  • A leading slash will match all files in that path name.
    • Ex: The pattern /*.c will match the file foo.c but not bar/awesome.c

Great Example from the gitignore(5) man page:

$ git status
[...]
# Untracked files:
[...]
#       Documentation/foo.html
#       Documentation/gitignore.html
#       file.o
#       lib.a
#       src/internal.o
[...]
$ cat .git/info/exclude
  # ignore objects and archives, anywhere in the tree.
  *.[oa]
$ cat Documentation/.gitignore
# ignore generated html files,
*.html
# except foo.html which is maintained by hand
!foo.html
$ git status
[...]
# Untracked files:
[...]
#       Documentation/foo.html
[...]


Generally there are three different ways to ignore untracked files.

1) Ignore for all users of the repository:

Add a file named .gitignore to the root of your working copy.

Edit .gitignore to match your preferences for which files should/shouldn't be ignored.

git add .gitignore

and commit when you're done.

2) Ignore for only your copy of the repository:

Add/Edit the file $GIT_DIR/info/exclude in your working copy, with your preferred patterns.

Ex: My working copy is ~/src/project1 so I would edit ~/src/project1/.git/info/exclude

You're done!

3) Ignore in all situations, on your system:

Global ignore patterns for your system can go in a file named what ever you wish.

Mine personally is called ~/.gitglobalignore

I can then let git know of this file by editing my ~/.gitconfig file with the following line:

core.excludesfile = ~/.gitglobalignore

You're done!

I find the gitignore man page to be the best resource for more information.

link|flag
I am keen on saying that *~ should ignore backups. – Masi Feb 14 at 10:07
vote up 9 vote down

Git Magic is all you'll ever need. Guaranteed or your money back!

link|flag
4  
Sigh, I want my money back. Buggy software (msysGit) with an incomplete tutorial (GitMagic) == hours of work, which is hardly free – samgoody Apr 23 at 14:30
/me too... Sucks! – wishi_ Oct 15 at 17:14
vote up 5 vote down

Commit Changes

Once you've edited a file, you need to commit your changes to git. When you execute this command it will ask for a commit message - which is just a simple bit of text that tells everyone what you've changed.

$ git commit source/main.c

Will commit the file main.c in the directory ./source/

$ git commit -a # the -a flag pulls in all modified files

will commit all changed files (but not new files, those need to be added to the index with git-add). If you want to commit only certain files then you will need to stage them first with git-add and then commit without the -a flag.

Commiting only changes your local repository though not the remote repositories. If you want to send the commits to the remote repository then you will need to do a push.

$ git push <remote> <branch> # push new commits to the <branch> on the <remote> repository

For someone coming from CVS or SVN this is a change since the commit to the central repository now requires two steps.

link|flag
vote up 4 vote down

Why yet another howto? There are really good ones on the net, like the git guide which is perfect to begin. It has good links including the git book to which one can contribute (hosted on git hub) and which is perfect for this collective task.

On stackoverflow, I would really prefer to see your favorite tricks !

Mine, which I discovered only lately, is git stash, explained here, which enables you to save your current job and go to another branch

EDIT: as the previous post, if you really prefer stackoverlow format with posts as a wiki I will delete this answer

link|flag
No, don't delete. Your answer is perfectly valid - and pointing others to good resources isn't a bad thing. I would also like the most common operations listed here, but it's a bit of work and I don't expect others to do it. I'll do it over time as I learn and this'll be a reference for me. – Adam Davis Nov 25 '08 at 1:02
vote up 10 vote down

Well, despite the fact that you asked that we not "simply" link to other resources, it's pretty foolish when there already exists a community grown (and growing) resource that's really quite good: the Git Community Book. Seriously, this 20+ questions in a question is going to be anything but concise and consistent. The Git Community Book is available as both HTML and PDF and answers many of your questions with clear, well formatted and peer reviewed answers and in a format that allows you to jump straight to your problem at hand.

Alas, if my post really upsets you then I'll delete it. Just say so.

link|flag
No, don't delete your post - it's a valid question. I qrote a much longer question giving reasons for 'yet another git resource' but cut it back. Main reason being that other helps try to teach you DVCS theory, and jump in the deep end. I want something concise, simplistic, and easy to get here. – Adam Davis Nov 25 '08 at 0:56
A couple of people have favorite'd it, so it looks like people would like to see a reference here. These references you link to should make it easy for others to fill in the details... – Adam Davis Nov 25 '08 at 0:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.