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

From OpenFOAMWiki
m (Books: typo)
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
  =Tutorials=
+
   
 
+
=Tutorials=
 
+
* [http://blog.interlinked.org/tutorials/git.html|Tutorial]
+
* [http://git.or.cz/course/svn.html|Git - SVN Crash Course]
+
* [http://toolmantim.com/articles/setting_up_a_new_remote_git_repository|How to set up a remote repo - not GitOsis!]
+
  
 +
* [http://blog.interlinked.org/tutorials/git.html Tutorial]
 +
* [http://git.or.cz/course/svn.html Git - SVN Crash Course]
 +
* [http://toolmantim.com/articles/setting_up_a_new_remote_git_repository How to set up a remote repo - not GitOsis!]
  
 
=Workflow examples=
 
=Workflow examples=
  
 +
* [http://nvie.com/posts/a-successful-git-branching-model Workflow 1]
 +
* [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]
  
* [http://reinh.com/blog/2009/03/02/a-git-workflow-for-agile-teams.html|Workflow 1]
+
=Cheat Sheet=
* [http://www.dinnermint.org/tutorial/dead-simple-git-workflow-for-agile-teams|Workflow 2]
+
  
 +
* [http://git.wiki.kernel.org/index.php/GitCheatSheet git.or.cz]
 +
* [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]
  
=Cheat Sheet=
+
=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
  
* [http://git.wiki.kernel.org/index.php/GitCheatSheet|git.or.cz]
+
[[Category:Develop]]
* [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]
+

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