GitHub에서 ssh 키를 설정하고 리포지토리 복제 (macOS)
목적
목표
절차
hogehogenoiMac:~ hogehoge$ cd .ssh
hogehogenoiMac:.ssh hogehoge$ ls
known_hosts
hogehogenoiMac:.ssh hogehoge$ ssh-keygen -t rsa -b 4096 -C "(メールアドレス)"
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/hogehoge/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /Users/hogehoge/.ssh/id_rsa.
Your public key has been saved in /Users/hogehoge/.ssh/id_rsa.pub.
hogehogenoiMac:repos hogehoge$ ssh -T [email protected]
# known_hostsに追加するか聞かれるので、yesを入力する
...
Hi (ユーザ名)! You've successfully authenticated, but GitHub does not provide shell access.
hogehogenoiMac:repos hogehoge$ git clone [email protected]:(ユーザ名)/prj.git
Cloning into 'prj'...
...
Receiving objects: 100% (3/3), done.
이상.
Reference
이 문제에 관하여(GitHub에서 ssh 키를 설정하고 리포지토리 복제 (macOS)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/dcn_f/items/a29b8fb0e19e9d7cf0a6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)