git-guide
git-guide copied to clipboard
use git vocabulary instead of svn or cvs
in git you clone a repository and checkout a branch. svn and cvs where the ones that used checkout for copying a repository.
Suggestion taken from hacker news https://news.ycombinator.com/item?id=7263135:
An improvement suggestion: do not use confusing terminology from other version control systems. Change "Checkout a repository" to "Clone an existing repository".Using the word "checkout" might make sense if someone is coming from an svn/cvs background, but it's just confusing because checkout in git is a different command with a different meaning.
And besides, more and more people are being introduced to git without prior exposure to cvs or svn. E.g. in my university, CS freshmen submit their exercises using git. Many of them have no prior exposure to centralized version control or things to unlearn.