It’s time to switch to GIT. For the last years I’ve worked with CVS and with SVN. Both systems are great and every system has got their disadvantages. But after using GIT I come to the conclusion that this is the best versioning system I have every used :) Good work Linus!
A little reference for my daily work:

# git init
# git add readme
# git commit -m "initial import"
# git remote add origin git@github.com:ledil/xxx.git
# git push origin master
# git pull origin master

 

  • Share/Bookmark