I am trying to clone a repository into my current directory. However, when I clone it with this command:
git clone REPOURL .
it says:
fatal: destination path '.' already exists and is not an empty directory.
The folders that I am cloning into already exist and I just want to add files that I have in the git repo.
Is there any way I can do this?
Thanks