赞
踩
以下为我新增gitee ssh代理的操作步骤:
- ssh-keygen -t rsa -C "你的邮箱" -f id_rsa_gitee
-
- -t rsa: 代表选择算法为rsa
- -C "你的邮箱": 代表以这个邮箱生成rsa
- -f id_rsa_gitee : 代表生成的私钥文件名,公钥文件名
执行上边的命令后,提示输入密码时,直接回车,这样后边操作git命令时可不用每次都要输入密码
成功生成公私钥的日志如下图:
- # 创建config文件
- touch ~/.ssh/config
-
-
- # 编辑config文件
- vim ~/.ssh/config
-
-
- # 编辑内容,三个配置项,仅需变更 IdentityFile 为你的私钥文件名称即可
- Host gitee.com
- HostName gitee.com
- User git
- IdentityFile ~/.ssh/id_rsa_gitee
-
- Host gitlab.com
- HostName gitlab.com
- User git
- IdentityFile ~/.ssh/id_rsa_gitlab
-
- Host github.com
- HostName github.com
- User git
- IdentityFile ~/.ssh/id_rsa_github
如下图:
git clone git@gitee.com:你的账号/你的代码仓库.git
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。