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?
feedback
|
|
A clone is simply a copy of a repository. On the surface, its result is equivalent to 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. | |||||||||||||||||
feedback
|
|
My answer includes github as many folks have asked about that too. Local Repositorygit (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. BranchesBranches - 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. 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. Githubgithub (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 - VisualizationVisualization 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 !
| ||||
|
feedback
|