要使ssh-keygen正常工作以设置用于克隆和其他目的的SSH密钥,请按照以下步骤操作:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
将your_email@example.com
替换为您在GitHub/GitLab/Bitbucket等平台上的实际电子邮件地址。
Enter a file in which to save the key (/Users/you/.ssh/id_rsa): /Users/you/.ssh/id_rsa_custom
~/.ssh
目录(或您在步骤3中指定的自定义路径)中看到两个文件:id_rsa
(私钥)和id_rsa.pub
(公钥)。
id_rsa.pub
文件,复制其中的内容。
git clone git@github.com:username/repository.git
将username
和repository
替换为实际的GitHub用户名和仓库名称。
领取专属 10元无门槛券
手把手带您无忧上云