Search code examples
c#visual-studiogitgit-extensions

How do I use VisualStudio git extensions to access remote repository using password access?


I have a remote git server that does not support registering a public key for authentication purposes and instead requires a password. When pushing to this server via the command line, I can enter a password and it works OK.

When I try to push to the same remote repository using Visual Studio with git extensions, the push just locks up as it is being asked for the password, but doesn't seem to be able to handle that. I can't figure out where in the git extensions configuration I specify the password.

Am I missing the obvious?? If so, how do I configure the password? Or is it a case that git extensions only works with private/public key authentication?


Solution

  • Unfortunately that's a missing feature. Git extensions only support private/public key authentication. You'll have to use the command line for https and password authentication.