답변:
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에서 이전 키를 제거해야합니다.