GitHub SSH Clone 설정 가이드 (Mac 기준)
GitHub 비공개 저장소를 SSH로 clone 하기 위한 전체 설정 절차입니다.1. SSH 키 생성 (없을 경우)ssh-keygen -t ed25519 -C "your_email@example.com"기본 경로 ~/.ssh/id_ed25519로 저장패스프레이즈는 생략 가능 (엔터 두 번)2. 공개키 GitHub에 등록cat ~/.ssh/id_ed25519.pub위 명령어로 출력된 공개키 내용을 복사GitHub 접속 → SSH Key 등록 페이지"New SSH key" 클릭 후 붙여넣기 및 저장3. SSH config 파일 설정nano ~/.ssh/config아래 내용 추가:Host github.com HostName github.com User git IdentityFile ~/.ssh/id_ed..