Difference between revisions of "Git Howto"

From HallCWiki
Jump to navigationJump to search
(Git howtos, training, and FAQs)
 
Line 20: Line 20:
  
 
<font color=red>'''NOTE:''' If you find a resource that you really appreciate. ''PLEASE ADD IT TO THE LIST!''<font>
 
<font color=red>'''NOTE:''' If you find a resource that you really appreciate. ''PLEASE ADD IT TO THE LIST!''<font>
 +
[[category:12GeV Software]]

Revision as of 09:08, 13 September 2012

From the git homepage:

Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.

Git is easy to learn and has a tiny footprint with lightning fast performance. It outclasses SCM tools like Subversion, CVS, Perforce, and ClearCase with features like cheap local branching, convenient staging areas, and multiple workflows.

Git is similar to CVS, SVN, etc. but the cheap local branching make it feasible to use a very powerful workflow where you can checkout, try something, backup, test something different, switch back to attempt 1 -- all without losing any of your work. You can also easily merge between these different branches and push-pull pieces of commits from others. It is ideal for the kind of highly distributed development we do at JLab.

Some general links to help users come up to speed with git.


NOTE: If you find a resource that you really appreciate. PLEASE ADD IT TO THE LIST!