I know how to clone a git repository to my system, using git clone. I cloned a repository using that command:
git clone https://github.com/<user name>/<repository name>
But when I tried to clone that repository again, which have been changed recently, I got this error message:
fatal: destination path '<repository name>' already exists and is not an empty directory.
git clone
is for creating copy of that repository on your system. You want to update that repository with new changes ? – Sergiy Kolodyazhnyy Jul 24 '16 at 04:25