git config --global user.name "Your Name"git config --global user.email "you@example.com" 설정 확인git config --global --listgit commit -m "Initial commit" SSH 키 생성 확인ls ~/.sshSSH 키 생성ssh-keygen -t rsa -b 4096 -C "your_email@example.com"SSH 공개 키 복사cat ~/.ssh/id_rsa.pubSSH 에이전트 시작eval "$(ssh-agent -s)"ssh-add ~/.ssh/id_rsaSSH키 추가 여부 확인ssh-add -l github에서 SSH 등록 (settings, SSH and GPG keys) 연결 확인 ssh..