Difference between revisions of "Tip Starting points for using GIT"

From OpenFOAMWiki
(add to category develop)
m (Books: typo)
 
(5 intermediate revisions by 2 users not shown)
Line 8: Line 8:
 
=Workflow examples=
 
=Workflow examples=
  
* [http://reinh.com/blog/2009/03/02/a-git-workflow-for-agile-teams.html Workflow 1]
+
* [http://nvie.com/posts/a-successful-git-branching-model Workflow 1]
* [http://www.dinnermint.org/tutorial/dead-simple-git-workflow-for-agile-teams Workflow 2]
+
* [http://reinh.com/blog/2009/03/02/a-git-workflow-for-agile-teams.html Workflow 2]
 +
* [http://www.dinnermint.org/tutorial/dead-simple-git-workflow-for-agile-teams Workflow 3]
 +
* [http://www.itk.org/Wiki/Git/Workflow/Topic Workflow 4]
  
 
=Cheat Sheet=
 
=Cheat Sheet=
Line 16: Line 18:
 
* [http://jan-krueger.net/development/git-cheat-sheet-take-two Jan Krüger]
 
* [http://jan-krueger.net/development/git-cheat-sheet-take-two Jan Krüger]
 
* [http://jan-krueger.net/development/git-cheat-sheet-extended-edition Jan Krüger - extended]
 
* [http://jan-krueger.net/development/git-cheat-sheet-extended-edition Jan Krüger - extended]
 +
 +
=Books=
 +
 +
* [http://www.kernel.org/pub/software/scm/git/docs/user-manual.html Official Manual] - written by Linus Torvalds and a few other authors
 +
* [http://ftp.newartisans.com/pub/git.from.bottom.up.pdf Git from the bottom up] - Save this for the end and only if you want to become a Git expert. This book explains how Git stores its objects and dives deep into the Git internals. You don’t really need to know any of this to be a happy Git user
 +
* [http://progit.org/book Pro Git] - This is a free PDF book written by Scott Chacon, a Git expert who happens to be also very good at explaining Git concepts very clearly
 +
* [http://www-cs-students.stanford.edu/~blynn/gitmagic/ Git Magic] - A small and digestible overview of the main concepts
  
 
[[Category:Develop]]
 
[[Category:Develop]]

Latest revision as of 11:58, 26 July 2015

1 Tutorials

2 Workflow examples

3 Cheat Sheet

4 Books

  • Official Manual - written by Linus Torvalds and a few other authors
  • Git from the bottom up - Save this for the end and only if you want to become a Git expert. This book explains how Git stores its objects and dives deep into the Git internals. You don’t really need to know any of this to be a happy Git user
  • Pro Git - This is a free PDF book written by Scott Chacon, a Git expert who happens to be also very good at explaining Git concepts very clearly
  • Git Magic - A small and digestible overview of the main concepts