#1
|
|||
|
|||
Getting Git to work with public key
I'm having troubles pushing to a git repository and I think it's harder than it should be. I added Git to the Visual Build project and set the command to "push" and the working directory to the directory that contains the git repository. When I go to test the step, I get the following:
Quote:
For whatever reason, Visual Build isn't picking up the SSH key (located in %USERPROFILE%\.ssh). I setup a new SSH key to work with Pageant but it still says "Permission denied (publickey)" (also when using git from the command line). It seems that git.exe only works (online) when its opened with the Git Shell. The only way I can see getting it to work is by using a Powershell step instead of Git. Also, if I try to SSH in with PuTTY then it works and I get the following: Quote:
Has anyone been able to get "git push" to work with Visual Build? If so, how? |
#2
|
|||
|
|||
That output is coming from git, not Visual Build. Check the Log the command-line option on the Advanced tab of the action, rebuild the step, and compare the git command-line call that was used with the working git command.
|
#3
|
|||
|
|||
I figured out that the problem was using Github for Windows instead of msysgit.
For future reference, I downloaded and downloaded msysgit (from https://msysgit.github.io/). When you get to the step that says "Adjusting your PATH environment", make sure that "Run Git from the Windows command prompt" is selected (if this isn't selected, Visual Build might fail because git could not be found). Then at the step that says "Choosing the SSH Executable", I selected "Use Plink". You will have to make sure Pageant is setup to work with your GitHub account (instructions for that can be found here) and Pageant will need to be running in the background in order for Git to properly authenticate with GitHub.com. |
Tags |
git , key , step |
|
|