This is an old revision of the document!
Revision Control Systems
Task | GIT | SVN | CVS |
Get Repository | git clone <url> [<rep-name>] | svn co <url> [<rep-name>] | export CVSROOT=<url>;<br/> mkdir <rep-name>; cd <rep-name>; <br/> cvs checkout . |
Update | git pull | svn up | cvs update |
Commit | git commit -a; git push | svn commit | cvs commit |