I am new to git so chances are there is a simple answer.

I have a git command for grabbing a site

git clone git@devel.foobar.com:foob.com.git

Now when I run this I am prompted for a password via GUI.(Enter a password to unlock the private key) My local root, and user passwords don't work.

what's going on? Do I need to get a password from the git repository manager?

EDIT- Sorry, It was for grabbing drupal sites. I thought this may have been a common issue among others here.

EDIT- Answer is - password is the passphrase you make locally when you create an ssh key.

link|improve this question

31% accept rate
Can you post the answer as an answer instead of an edit please? – Oli May 24 '11 at 11:31
feedback

migrated from drupal.stackexchange.com May 24 '11 at 9:59

This question came from our site for Drupal developers and administrators.

2 Answers

up vote 3 down vote accepted

You answered it yourself in the answer.

The password is the password/passprase you make locally when you create an ssh key. So if you set your password for the ssh key to foobar , then the password that you would need to enter when it asks you would be foobar - your password probably (and should be!) different, that's just an example.

If you forgot your password, then you should create a new one. For instructions on how to do that, take a look here.

link|improve this answer
Thanks, yeah for some reason I couldn't hit the answer button myself so I just put it in the question. Password, Passphrase threw me off because it wasn't consistent and a gui window popped up while working from the terminal. – winchendonsprings May 24 '11 at 15:35
@winchendonsprings You're welcome. And that's confusing for me as well at times. Mainly at like 4AM. :) – jrg May 24 '11 at 16:12
feedback

Answer is - password is the passphrase you make locally when you create an ssh key.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.