What is the difference between pull and clone in git?
git clone is how you get a local copy of an existing repository to work on. It’s usually only used once for a given repository, unless you want to have multiple working copies of it around. (Or want to get a clean copy after messing up your local one…) git pull (or git fetch + … Read more