4

When I created my SSH key while setting up git, I chose to use a pass-phrase for the key. Now, whenever I push to my remote repository (unfuddle), I get prompted for this pass-phrase. Is there some way to automate this?

ProfK
  • 49,207
  • 121
  • 399
  • 775

2 Answers2

6

Use SSH Agent.

Cory Petosky
  • 12,458
  • 3
  • 39
  • 44
4

Use ssh-agent: http://wiki.sourcemage.org/Git_Guide#I.27m_tired_of_typing_my_SSH_key_passphrase.

You can get more information from this stackoverflow answer.

Community
  • 1
  • 1
Douglas Leeder
  • 52,368
  • 9
  • 94
  • 137