Git
From Linuxintro
Revision as of 10:17, 1 August 2011 by imported>ThorstenStaerk (dead links--)
Git is a revision control system that allows you to clone complete software repositories among developers.
How to ...
... get a past version
repository # git reset c3c9e4d97f0668235a5b Unstaged changes after reset: M README
git vs svn translation
svn | git | purpose |
---|---|---|
svn co | git clone | get the software |
svn up | git pull | update to the latest version |