Difference between revisions of "Git"

From eLinux.org
Jump to: navigation, search
Line 6: Line 6:
  
  
See [[Flameman/git]] and [git usage] for a Tutorial and examples
+
See [[Flameman/git]] and [[git usage]] for a Tutorial and examples
  
  

Revision as of 18:23, 17 May 2010

Git is a distributed Version Control System used heavily by the Linux Kernel Developer Community and many other open source projects,

Git is distributed: every developer has a copy of the whole project and its history, this doubles as backup as well as makes operations super fast since you don't need to go through network.

Git is about series of patches that work in a tree form, each tree leaf is a branch. Branches are easy and fast, you can create and delete as much as you wish and you can optionally push them upstream, so it's advised that development happens in your own tree and that you rebase your work on top of upstream 'master', that way you get a consistent sequence of patches to implement features. With Git you can go back in history and edit commits, delete them, reorder or even merge lots of commits into a single commit for publishing, usually required for projects that employ code review.


See Flameman/git and git usage for a Tutorial and examples



Additional Resources


Git Hosting

These sites provide (free) git hosting services: