Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
git-usage [2011/03/26 08:38] genec Git commands: space separation |
git-usage [2011/03/26 13:33] (current) genec [Public repo: other] github fork |
||
---|---|---|---|
Line 23: | Line 23: | ||
* [[http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html|gittutorial]], [[http://www.kernel.org/pub/software/scm/git/docs/gittutorial-2.html|gittutorial-2]], [[http://www.kernel.org/pub/software/scm/git/docs/everyday.html|Everyday GIT]] and the git man pages offer a good starting point and quick commands | * [[http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html|gittutorial]], [[http://www.kernel.org/pub/software/scm/git/docs/gittutorial-2.html|gittutorial-2]], [[http://www.kernel.org/pub/software/scm/git/docs/everyday.html|Everyday GIT]] and the git man pages offer a good starting point and quick commands | ||
* [[http://www.newartisans.com/blog_files/git.from.bottom.up.php|Git from the Bottom Up]] offers a good resource to understand how git works | * [[http://www.newartisans.com/blog_files/git.from.bottom.up.php|Git from the Bottom Up]] offers a good resource to understand how git works | ||
+ | |||
+ | ==== Git Commands ==== | ||
+ | Older versions of git also offered commands in the style of "git-command" as an aid as shells didn't have the logic to complete "git command". Newer versions don't use that style by default as some newer shells now offer this logic. | ||
===== Setting up your repositories ===== | ===== Setting up your repositories ===== | ||
==== Local repo ==== | ==== Local repo ==== | ||
Line 46: | Line 49: | ||
==== Public repo: other ==== | ==== Public repo: other ==== | ||
Several other sites offer a place to store a free public git repository. Two such sites are [[http://github.com|GitHub]] and [[http://repo.or.cz|repo.or.cz]]. | Several other sites offer a place to store a free public git repository. Two such sites are [[http://github.com|GitHub]] and [[http://repo.or.cz|repo.or.cz]]. | ||
+ | |||
+ | * http://help.github.com/fork-a-repo/ has an example of forking a repo to your own. | ||
+ | |||
===== Example workflow ===== | ===== Example workflow ===== | ||