# GitHub 로그인 → Settings → Emails
git config --global user.name "이름"
git config --global user.email "이메일"
# 각 VM에서 키 생성
ssh-keygen -t rsa -b 4096
# 공개키 확인
cat ~/.ssh/id_rsa.pub
# 이거 복사해서 GitHub → Settings → SSH Keys에 등록
<https://github.com/settings/ssh/new>
Title: 이름 아무거나 입력
Key Type: Authentication Key
Key: SSH 터미널에서 `cat ~/.ssh/id_rsa.pub` 결과 복사 붙여넣기.