1. git 최초설정 및 계정 연동 git config --global user.name "John" git config --global user.email "johndoe@example.com" git config --list 로 설정된것을 확인할수 있음 2. ssh 키 생성 .ssh 디렉토리 이동( 없을 시 mkdir ~/.ssh 로 생성 ) cd .ssh ssh-keygen -t rsa -b 4096 -C "MyEmail@example.com" ( 키 생성 명령어 ) Enter file in which to save the key...어쩌구 나타나면 엔터! 만약 자동 로그인을 원한다면 아래 암호 입력 부분에서 입력하지 않고 엔터 치면된다! Enter passphrase( empty for no pa..