Can someone help me understand the difference between a branch, a fork and a clone in Git?

How are they used. Why are they used and what do they represent?

link|improve this question

80% accept rate
12  
Any chance you want to start accepting answers? – Chase Florell Feb 8 at 22:11
feedback

2 Answers

up vote 101 down vote accepted

A clone is simply a copy of a repository. On the surface, its result is equivalent to svn checkout, where you download source code from some other repository. The difference between centralized VCS like Subversion and DVCSs like Git is that in Git, when you clone, you are actually copying the entire source repository, including all the history and branches. You now have a new repository on your machine and any commits you make go into that repository. Nobody will see any changes until you push those commits to another repository (or the original one) or until someone pulls commits from your repository, if it is publicly accessible.

A branch is something that is within a repository. Conceptually, it represents a thread of development. You usually have a master branch, but you may also have a branch where you are working on some feature xyz, and another one to fix bug abc. When you have checked out a branch, any commits you make will stay on that branch and not be shared with other branches until you merge them with or rebase them onto the branch in question. Of course, Git seems a little weird when it comes to branches until you look at the underlying model of how branches are implemented. Rather than explain it myself (I've already said too much, methinks), I'll link to the "computer science" explanation of how Git models branches and commits, taken from the Git website:

http://eagain.net/articles/git-for-computer-scientists/

A fork isn't a Git concept really, it's more a political/social idea. That is, if some people aren't happy with the way a project is going, they can take the source code and work on it themselves separate from the original developers. That would be considered a fork. Git makes forking easy because everyone already has their own "master" copy of the source code, so it's as simple as cutting ties with the original project developers and doesn't require exporting history from a shared repository like you might have to do with SVN.

EDIT: since I was not aware of the modern definition of "fork" as used by sites such as GitHub, please take a look at the comments and also Michael Durrant's answer below mine for more information.

link|improve this answer
44  
A fork doesn't necessarily mean the developer isn't happy with the main repo. Typically, it means that another developer has read, but not write, access to that repo. The developer can fork the repo, make changes but since he can't write to the main repo he has to submit his changes as a patch. So, forking is also a means of encouraging collaboration without granting write access. – Bryce Jul 25 '10 at 16:44
1  
I suppose that's true. I've only ever seen "fork" used in the context of creating a new, potentially competing version of a project. – siride Jul 25 '10 at 22:39
10  
You could say that a fork is a branch that is not expected to be merged upstream – masonk Jul 26 '10 at 12:21
Is GitHub's fork the same idea here, or is there some metadata associated with forking that encourages a fork rather than a clone + create your own GitHub repo? – Joe Aug 3 '11 at 20:23
@Joe: I don't know anything about GitHub as I don't use it. – siride Aug 4 '11 at 3:24
show 4 more comments
feedback

My answer includes github as many folks have asked about that too.

Local Repository

git (locally) has a directory (.git) which you commit your files to and this is your 'local repository'. This is different from systems like svn where you add and commit to the remote repository immediately.

git stores each version of a file that changes by saving the entire file. It is also different from svn in this respect as you could go to any individual version without 'recreating' it through delta changes.

git doesn't 'lock' files and require exclusive lock for an edit (older systems like pvcs come to mind). It actually does an amazing job of merging file changes (within the same file!) together during pulls or fetches/pushes. The only time you need to do a manual change is if two changes actually involve the same line(s) of code.


Branches

Branches - this is when you want to preserve the main code, make a copy (branch) and then work within that branch. When you've finished you merge the branch back in to the master repository. On example of this might be if you are working on an upgrade to a new version. So with a branch you are managing the branch, whereas with a fork someone else controls accepting the code back in.
Broadly speaking there are two main approaches to doing branches. One is to keep most changes on the master branch, only using branches for things like version changes and another whereby you basically make a branch for every feature request or bug fix and then a designated person decides when to actually merge those branches into the main master branch. This second method does not require someone to maintain a list of users for the repository.
The standard way to bring a branch "in" to master is to do a merge. Branches can also be rebased to 'clean up' history. It doesn't affect the current state and it is a more advanced topic beyond the depth of this explanation.
One 'rule' to note: Only rebase if the branch is local and you haven't pushed it to remote yet!

Forking.

Their are two approaches to collaboration. The first is to add other collaborators in (via their ssh keys). This will let them push directly to a repository. The downside is that you have to maintain the list of users. The other approach - forking - allows anyway to 'fork' the repository, making a local copy in their own git repository account. They can then make changes and when finished make a 'pull request' (really it's more of a 'push' from them and a 'pull' request for the actual repository maintainer) to get the code accepted.


Github

github (a remote repository) is a remote source that you normally push and pull those committed changes to if you have (or are added to) such a repository, so local and remote are actually quite distinct.

When you 'fork' - in github click on - enter image description here - you create a copy of the code in your github account. It can be a little subtle first time you do it, so keep making sure you look at whose repository a code base is listed under - either the original owner or 'forked from' and you, e.g.enter image description here
Once you have the local copy, you can make changes as you wish (by pulling and pushing them to a local machine). When you are done then you submit a 'pull request' to the original repository owner/admin (sounds fancy but actually you just click on this:- enter image description here)and they 'pull' it in.
More common for a team working on code together is to 'clone' the repository (click on the 'copy' icon on the repository's main screen). Then, locally type git clone [paste] This will set you up locally and you can push and pull directory to the shared guthub location.

Visualization

Visualization of the core concepts can be seen at http://marklodato.github.com/visual-git-guide/index-en.html and http://ndpsoftware.com/git-cheatsheet.html#loc=index

If you want a visual display of how the changes are working, you can't beat the visual tool gitg (gitx for mac) with a gui that I call 'the subway map' (esp. London Underground), great for showing who did what, how things changes, diverged and merged, etc.

You can also use it to add, commit and manage your changes !

enter image description here

link|improve this answer
2/20/12 Added info on merge vs. rebase – Michael Durrant May 20 at 22:07
feedback

Your Answer

 
or
required, but never shown

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