回答:
あなたは(あなたの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から古いキーを削除してください。