根据SSH主机或身份指定Git身份

时间:2018-09-12 09:06:36

标签: linux bash git ssh configuration

Git像往常一样困扰我

*** Please tell me who you are.
Run
  git config --global user.email "you@example.com"
  git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
我通常会回复的

git config user.email "me@example.com"
git config user.name "Me Name"

我不希望全局设置以上设置,因为我有多个主机,并且希望为每个SSH主机使用不同的Git身份。是否可以将Git身份链接到SSH主机和/或身份,例如通过拥有某种通用配置文件

Host github.com
    IdentityFile ~/.ssh/github_rsa
    user.email "me@example.com"
    user.name "Me Name"
Host gitlab.com
    IdentityFile ~/.ssh/gitlab_rsa
    user.email "another@example.com"
    user.name "Another Name"

1 个答案:

答案 0 :(得分:1)

我没有看到通用的方法,但是可能会有这样的自定义解决方案:

为每个存储用户设置的git Server

使用主机名创建一个 properties 文件:

echo 'user.email "me@example.com"' > $HOME/.mygitconfig/github.com.user
echo 'user.name "Me Name"' >> $HOME/.mygitconfig/github.com.user

并创建一个脚本以按照以下方式克隆存储库(未经测试):

cat %HOME/bin/clonerepo

#!/user/bin/bash
git clone  git@$1/$2 .
while IFS=$'\n' read -r user_data; do
   git config $(user_data)
done < $(HOME)/.mygitconfig/$1.user

您使用它:

 $HOME/bin/clonerepo github.com path/to/repo.git