जवाबों:
यदि आपके पास आपकी ssh कीज़ ( जैसे USB स्टिक पर) की कॉपी है, तो बस ~/.ssh/
डायरेक्ट फाइल्स को डायरेक्टरी में कॉपी करें ।
जैसे ,
cp /path/to/my/key/id_rsa ~/.ssh/id_rsa
cp /path/to/my/key/id_rsa.pub ~/.ssh/id_rsa.pub
# change permissions on file
sudo chmod 600 ~/.ssh/id_rsa
sudo chmod 600 ~/.ssh/id_rsa.pub
# start the ssh-agent in the background
eval $(ssh-agent -s)
# make ssh agent to actually use copied key
ssh-add ~/.ssh/id_rsa
अन्यथा, आपको एक नया बनाना होगा और इसे अपने GitHub खाते https://help.github.com/articles/adding-a-new-ssh-key-to-your-github-account/ पर जोड़ना होगा । जब भी आप इस पर हों, तब GitHub से पुरानी कुंजी को हटा दें।