https://goddaehee.tistory.com/254
1. ~/.ssh/id_rsa.pub 있는지 확인, 없으면 만들기
mkdir ~/.ssh
chmod 700 ~/.ssh
ssh-keygen -t rsa -b 4096 -C "yourEmail@example.com"
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
touch ~/.ssh/authorized_keys
chmod 600 ~/.ssh/authorized_keys
eval "$(ssh-agent -s)"
결과: Agent pid 123456 가 나와야 함
ssh-add ~/.ssh/id_rsa
이거 혹시 어케 삭제하는지는 아직 모르겠다.
git remote show
<origin 있다면 삭제 필요>
git remote remove origin
git remote add origin git@github.com:[계정명]/[저장소명].git
git remote show