做过很多遍了,却总是记不住,这回从头来描述一下。
所谓多个git账号,可能有两种情况:
这两种情况的处理方法是一样的,分下面几步走:
ssh-keygen -t rsa -f ~/.ssh/id_rsa_work -c xxx@gmail.com
然后根据提示连续回车即可在~/.ssh目录下得到id_rsa_work和id_rsa_work.pub两个文件,id_rsa_work.pub文件里存放的就是我们要使用的key
ssh-keygen -t rsa -f ~/.ssh/id_rsa_github -c xxx@gmail.com
然后根据提示连续回车即可在~/.ssh目录下得到id_rsa_github和id_rsa_github.pub两个文件,id_rsa_gthub.pub文件里存放的就是我们要使用的key~/.ssh/config
,设定不同的git 服务器对应不同的key1 2 3 4 5 6 7 8 9 10 11 12 | # Default github user(first@mail.com),注意User项直接填git,不用填在github的用户名 Host github.com HostName github.com User git IdentityFile ~/.ssh/id_rsa_github # second user(second@mail.com) # 建一个gitlab别名,新建的帐号使用这个别名做克隆和更新 Host 172.16.11.11 HostName 172.16.11.11 User work IdentityFile ~/.ssh/id_rsa_work |
---|
编辑完成后可以使用命令 ssh -vT git@github.com
看看是不是采用了正确的id_rsa_github.pub文件
这样每次push的时候系统就会根据不同的仓库地址使用不同的账号提交了
~/.ssh/config
内容应该是这样的。1 2 3 4 5 6 7 8 9 10 11 12 | # Default github user(A@mail.com),注意User项直接填git,不用填在github的用户名 Host A.github.com HostName github.com User git IdentityFile ~/.ssh/id_rsa_github_A # second user(B@mail.com) # 建一个gitlab别名,新建的帐号使用这个别名做克隆和更新 Host A.github.com HostName github.com User git IdentityFile ~/.ssh/id_rsa_github_B |
---|
同时你的github的repo ssh url就要做相应的修改了,比如根据上面的配置,原连接地址是:
git@github.com:testA/gopkg.git
那么根据上面的配置,就要把github.com
换成A.github.com
, 那么ssh解析的时候就会自动把testA.github.com
转换为 github.com
,修改后就是
git@A.github.com:testA/gopkg.git
直接更改 repo/.git/config
里面的url即可
这样每次push的时候系统就会根据不同的仓库地址使用不同的账号提交了
很简单, 直接更改 repo/.git/config
里面的url即可,把里面对应tag下的url增加一个就可以了。例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | [remote "GitHub"] url = git@github.com:elliottcable/Paws.o.git fetch = +refs/heads/*:refs/remotes/GitHub/* [branch "Master"] remote = GitHub merge = refs/heads/Master [remote "Codaset"] url = git@codaset.com:elliottcable/paws-o.git fetch = +refs/heads/*:refs/remotes/Codaset/* [remote "Paws"] url = git@github.com:Paws/Paws.o.git fetch = +refs/heads/*:refs/remotes/Paws/* [remote "Origin"] url = git@github.com:Paws/Paws.o.git url = git@codaset.com:elliottcable/paws-o.git |
---|
上面这个立即就是有4个远端仓库,不同的tag表示不同的远端仓库,最后的Origin标签写法表示默认push到github和codaset这两个远端仓库去。当然,你可以自己随意定制tag和url
这个问题也困扰了我一段时间,后来发现修改 repo/.git/config
里面的url,把https地址替换为ssh就好了。
例如
url=https://MichaelDrogalis@github.com/derekerdmann/lunch_call.git
替换为
url=ssh://git@github.com/derekerdmann/lunch_call.git
http://stackoverflow.com/questions/7438313/pushing-to-git-returning-error-code-403-fatal-http-request-failed http://stackoverflow.com/questions/849308/pull-push-from-multiple-remote-locations/3195446#3195446
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有