每个项目单独配置 git 用户

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了每个项目单独配置 git 用户相关的知识,希望对你有一定的参考价值。

git多账号登陆问题

取消git全局设置

很多同学照着网上的教程,都会对git进行全局设置,例如:
git config --global user.name "your_name"  git config --global user.email  "your_email"
如果你多参与的项目都允许你用同一个用户名和邮箱,这样设置当然没问题,但是,一旦你进入公司,估计是没有自主选择权利的,公司都会配置相应的域账号和邮箱,因此我们首先需要取消git的全局设置
git config --global --unset user.name git config --global --unset user.email
针对每个项目,单独设置用户名和邮箱,设置方法如下:
mkdir ~/test // git检出目录 cd ~/test git init git config user.name "your_name" git config user.email "your_email"
说白了,也就是进入到你的git项目相对根目录下,然后执行git config设置记录

SSH配置

我看了很多中文博客,发现讲的都不太清楚,还是在stackoverflow上,找了一个问题解决我的疑惑:http://stackoverflow.com/questions/14689788/multiple-github-accounts-what-values-for-host-in-ssh-config
解决方法总结如下:
(1) 我现在有两个git项目,使用的用户名分别是A/B,用的邮箱分别是C/D
(2) 在~/.ssh目录下,使用 ssh-keygen -C "your_email" -t rsa 生成公私秘钥,命名分别为 id_rsa_first, id_rsa_second,公钥的内容需要分别上传到git项目的服务器上
(3) 在~/.ssh目录下创建config文件,进行相应配置:
#第一个git项目账号 Host first HostName test.com #这里需要用真实的项目检出hostname,为了项目安全,我这里随意写的 User A IdentityFile ~/.ssh/id_rsa_first  #第二个git项目账号 Host second HostName test2.com Port 1334 User B IdentityFile ~/.ssh/id_rsa_second
(4) 新建git项目检出目录,我发现很多同学出问题,在于git项目没有初始化
mkdir project && cd project git init git config user.name "A" git config user.email "C"
相应的第二个项目也参照上面的指令进行初始化设置
(5)检出服务端项目代码,这里需要注意,使用.ssh目录下的host代替真实的hostname,这样才能让git识别出来
git remote add first [email protected]:A/project.git
如果使用的是repo,也是同样操作
repo init -u ssh://[email protected] -b branch
(6)push的时候,push到对应的Host即可
first项目中: git push fist master

以上是关于每个项目单独配置 git 用户的主要内容,如果未能解决你的问题,请参考以下文章

Git 配置用户名和邮箱

git用法之常用命令

git配置用户名邮箱

如何在一个电脑上同时使用两个Git的账号

共用服务器多git账号配置

git中全局设置用户名邮箱