赞
踩
ssh-keygen -t rsa -C "你的仓库注册邮箱"
# 例如:ssh-keygen -t rsa -C "biaov@qq.com"
biaov
: 私钥biaov.pub
: 公钥biaov.pub
文件的内容,粘贴到 GitHub 的 SSH 密钥配置中,然后保存即可config
文件,然后输入以下内容:
.ssh
: C:\Users\Administrator\.ssh
- windowsHost
: 你的仓库域名,例如:github.com, 如果是相同域名不同账号,则拼接 -
区分,例如:github.com-biaov2017User
: 你的仓库用户名,例如:biaovHostName
: 你的仓库域名,例如:github.comIdentityFile
: 你的私钥路径,例如:C:/Users/Administrator/.ssh/biaovPreferredAuthentications
: 你的认证方式,例如:publickeyHost github.com User biaov HostName github.com IdentityFile ~/.ssh/biaov PreferredAuthentications publickey Host github.com-biaov2017 User biaov2017 HostName github.com IdentityFile ~/.ssh/biaov2017 PreferredAuthentications publickey Host gitee.com User biaov HostName gitee.com IdentityFile ~/.ssh/biaov PreferredAuthentications publickey
git clone git@github.com:biaov2017/demo.git
# 或者
git clone git@github.com-biaov2017:biaov2017/demo.git
项目目录/.git/config
[remote "origin"]
url = git@github.com:biaov2017/demo.git
# 替换为
[remote "origin"]
url = git@github.com-biaov2017:biaov2017/demo.git
这样你就可以多账号多仓库使用 Git 了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。