Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio and libgit2 Git Commit Error In Different Solution

While commiting from Visual Studio got my GIT repo, I get the following error below. It's weird because I have another copy of the project that uses the same repository and that solution commits just fine, same repo and everything. Clues?

An error occurred. Detailed message: An error was raised by libgit2. Category = Net (Error).
This transport isn't implemented. Sorry

Also if I go to the folder and do it via another GIT Guid or command prompt it works fine on that same folder.

like image 726
Mike Flynn Avatar asked Jan 17 '14 20:01

Mike Flynn


1 Answers

Unfortunately, Visual Studio Tools for Git do not yet support remote repositories using the SSH protocol, only HTTP and HTTPS.

Investigate the .git/config in each repository to ensure that you did not clone one repository with SSH. If you did, try to switch the remote to an HTTPS endpoint.

like image 59
Edward Thomson Avatar answered Oct 12 '22 16:10

Edward Thomson