Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
1k views

getting ssh-agent to work with git run from windows command shell

I have msysgit installed, with OpenSSH. I am connecting to a gitosis repo. From the git bash, I have created a .profile file that runs ssh-agent (if not already running) each time git bash is opened. ...
5
votes
1answer
2k views

Add private key permanently with ssh-add on Ubuntu

I have a private key protected with a passowrd to access a server via SSH. I have 2 linux (ubuntu 10.04) machines and the behavior of ssh-add command is different in both of them. In one machine, ...
5
votes
1answer
909 views

Hudson Git Plugin not working on windows

I have msysgit installed with OpenSSH option. In Git bash, I can run ssh-agent, and it manages the passphrase for my ssh key. Is it possible for the Hudson Git plugin to use ssh-agent? Currently, it ...
2
votes
2answers
293 views

How to extract private keys from an ssh-agent?

ssh-add -l displays that I have 3 RSA keys added to my SSH agent. ssh-add -L displays the public keys. How do I get the private keys as well, so that I can save them to a file? Or is it by design that ...
1
vote
1answer
118 views

Can I make git-svn use my existing ssh-agent for credentials?

ETA: Turns out I may have the wrong end of the stick. Collabnet SVN stores its client certificate credentials not by using ssh-agent, but with gnome-keyring (or kwallet, or other platform-specific ...
1
vote
2answers
285 views

How to get only remote git operations to trigger a ssh-add event for ssh-agent?

I recently asked a question on AskUbuntu about getting ssh-agent to automatically save my passphrase protected key for later re-use without having to re-enter the passphrase during bash login ...
1
vote
1answer
665 views

How to get Rspec test in Colour for windows on MINGW

I'm new to Ruby, just tying to learn it, following the Ruby on Rails Tutorial I'm running the GitBash MINGW for window, and when I run (rspec 2.4.0) rspec spec/ I get the response: You must use ...
0
votes
1answer
21 views

Need ssh-agent running under Apache PHP script

i want to run a capistrano command in a PHP scipt executing under apache. i need SSH-Agent started when i issue the command. Apache runs under the www-data user which has ssh-agent setup but ssh-agent ...
0
votes
1answer
52 views

How to save password with Git ssh-agent

Not sure how or why, but ssh-agent lost all saved passwords. How can I re-add them? I would like it if when connecting over SSH to type the password then and have ssh-agent remember it from there on. ...
0
votes
0answers
128 views

How do I isolate problems with ssh-add/ssh-agent provided in the msys implementation that comes with msysgit?

I have installed msysgit: Git-1.7.8-preview20111206.exe from http://code.google.com/p/msysgit/downloads/list (Edit: I have also installed msysGit-fullinstall-1.7.8-preview20111206.exe, which ...
0
votes
0answers
108 views

Git hook and ssh Agent Forwarding

I've got a remote development server with a git repository. When I push from my local machine to this dev server it runs the git hook after-receive to push the develop branch on a heroku staging ...
0
votes
1answer
801 views

SSH Remote Command Hangs

Does anyone know why this command, ssh -v user@address "exec ssh-agent bash" ...would hang on this output? debug1: Sending command: exec ssh-agent bash I'm trying to automatically setup a set of ...