I assume you are using Windows and GitBASH.
You can simply delete the "C: ... \ project" folder without any side effects.
Then in git bash you can do cd c\: This changes the directory you are working in to C: \
Then you can do git clone [url] This will create a folder called "project" in C: \ with the contents of the repo.
If you want to call it something else, you can do git clone [url] [something else]
For example, cd c\:
git clone git@github.com:username\repo.git MyRepo
This will create a folder in the folder "C: \ MyRepo" with the contents of the remote repository.
Paul Apr 14 2018-11-11T00: 00Z
source share