Git
From Linuxintro
Revision as of 07:39, 9 July 2011 by imported>ThorstenStaerk
Git is a revision control system that allows you to clone complete software repositories among developers.
Set up a git server
A git server is merely an ssh server with git installed. Here is how to set it up.
git vs svn translation
svn | git | purpose |
---|---|---|
svn co | git clone | get the software |
svn up | git pull | update to the latest version |