使用https:// 提交GitHub上的私有项目时,需要每次都输入帐号和密码,比较麻烦。
比如我自己的笔记本,在push的时候我可不想每次都输入这些。
那就使用SSH吧,这个需要在GitHub的帐号上添加这台笔记本的SSH key。
① ssh-keygen -t rsa -C "[email protected]"
引号中输入一个电子邮件地址信息即可。
② Enter file in which to save the key (/home/you/.ssh/id_rsa):
这是选择生成Key的保存路径,默认即可。
③ Enter passphrase (empty for no passphrase):[Type a passphrase]
Enter same passphrase again:[Type passphrase again]
这是输入本地ssh用户的密码,如果笔记本只有你一个人开发的话,建议不填写密码。
④ your identification has been saved in /home/you/.ssh/id_rsa.
your public key has been saved in /home/you/.ssh/id_rsa.pub.
告诉你生成的本地证书和公共key的生成路径。
⑤ 将id_rsa.pub中的内容复制到GitHub帐号的SSH keys里。
OK,使用ssh下载项目,可以不用每次提交都输入用户名和密码了。
时间: 2024-10-20 08:53:12