一台电脑使用多个git账号
Posted 月明星惜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一台电脑使用多个git账号相关的知识,希望对你有一定的参考价值。
最近开始使用git,今天又新建了一个github账号,提交是发现总是说第一个账号没有权限,后发现git push的时候需要区分github账号,现记录解决方案:
1.创建SSH KEY $ ssh-keygen -t rsa -C "[email protected]",根据提示输入文件名,如id_rsa_two,粘贴复制到github的SSH
2.查看用户~/.ssh下是否存在 config文件,如不存在使用命令 touch config创建,然后配置config
#github server one
Host github
Hostname github.com
User git
IdentityFile ~/.ssh/id_rsa
#github server two
Host github_two
Hostname github.com
User git
IdentityFile ~/.ssh/id_rsa_two
3.测试配置,测试成功后github ssh处小钥匙图标会变绿色
ssh
-T [email protected]_two
#如果配置正确会提示
Hi your git account two
in
github ! You‘ve successfully authenticated, but GitHub does not provide shell access.
4.clone项目到本地
原先操作: git clone [email protected]:yourAccount
/xxx
.git;
现改为:
git clone [email protected]_two.com:yourAccount
/xxx
.git
以上是关于一台电脑使用多个git账号的主要内容,如果未能解决你的问题,请参考以下文章
换了一台电脑用一个git账号 需要重新生成一个ssh key吗
markdown GIT中的多账号如何处理?1。同一台电脑多个GIT中(不同网站的)账号2.同一台电脑多个GIT中(同一个网站的比如github上的)多个账号