Reputation: 121
This is driving me crazy. We are using a local installation of gitlab and I'm trying to create a new remote repository from Visual Studio, for a new solution.
If I try creating the solution first, then Git clone, it complains the folder is not empty.
If I empty the folder and clone the repository, works, but then I cannot create the solution because it complains the folder is not empty.
So how the heck I am supposed to create a new clone for a new solution?! The remote repository has only readme.md file in it.
Upvotes: 1
Views: 4177
Reputation: 41
I had the same issue, and I found the same workaround (git clone empty repository, copy .git folder to my app folder, then sync). Lately, I found that it's much simpler:
that's all. Obviously, you must have installed GitLab extension for visual studio, before. HTH.
Upvotes: 2