Reputation: 60203
I want to clone my repository to compile and improve it, with Visual Studio Community 2017.
On command line I would type git clone [email protected]:aegif/CmisSync.git
Visual Studio has a Team Explorer
view with a Clone
button, but it does not seem to work as I would expect, it shows errors:
... which I guess is caused by Visual Studio trying to connect without bothering to authenticate me or creating SSH keys first.
What am I doing wrong?
Upvotes: 2
Views: 4430
Reputation: 2901
I had this problem when I try to clone a repo from bitbucket. I just open sourcetree and cloned it. Then switched to Visual Studio 2019 to open it.
Upvotes: 0
Reputation: 60203
The GitHub extension for Visual Studio sometimes crashes or makes Visual Studio slower, so another option is:
Upvotes: 0
Reputation: 60203
By default this version of Visual Studio does not include GitHub integration.
First, click Tools
>Get tools and features
and install GitHub extension for Visual Studio
:
Then on the Clone
link under GitHub
, not the one under Local Git repositories
:
Now you can easily select your GitHub repository and clone it.
Upvotes: 2