.gitconfig通常存储在用户中。主目录。

我使用不同的身份为a公司工作,为B公司工作(主要是名称/电子邮件)。如何使用两种不同的Git配置,使我的签入与名称/电子邮件不一致?


当前回答

遵循以下步骤:

从系统中找到.gitconfig Windows文件位置:"C:\Users${USER_NAME}.gitconfig" Linux文件路径:“/usr/local/git/etc/gitconfig” 打开.gitconfig文件,并根据您的条件添加以下行 [includeIf“gitdir: D: \ ORG-A-PROJECTS \”) (用户) 约翰·史密斯 email = js@organizationx.com [includeIf "gitdir:~/organization_b/"] (用户) 无名氏 邮箱= jd@organizationy.com

其他回答

存储库的特定克隆中的.git/config文件是该克隆的本地文件。放置在那里的任何设置只会影响该特定项目的操作。

(默认情况下,git配置修改的是.git/config,而不是~/。Gitconfig -仅使用——global会修改后者。)

我也有同感。我写了一个bash脚本来管理它们。 https://github.com/thejeffreystone/setgit

#!/bin/bash

# setgit
#
# Script to manage multiple global gitconfigs
# 
# To save your current .gitconfig to .gitconfig-this just run:
# setgit -s this
#
# To load .gitconfig-this to .gitconfig it run:
# setgit -f this
# 
# 
# 
# Author: Jeffrey Stone <thejeffreystone@gmail.com>

usage(){
  echo "$(basename $0) [-h] [-f name]" 
  echo ""
  echo "where:"
  echo " -h  Show Help Text"
  echo " -f  Load the .gitconfig file based on option passed"
  echo ""
  exit 1  
}

if [ $# -lt 1 ]
then
  usage
  exit
fi

while getopts ':hf:' option; do
  case "$option" in
      h) usage
         exit
         ;;
      f) echo "Loading .gitconfig from .gitconfig-$OPTARG"
         cat ~/.gitconfig-$OPTARG > ~/.gitconfig
         ;;
      *) printf "illegal option: '%s'\n" "$OPTARG" >&2
         echo "$usage" >&2
         exit 1
         ;;
    esac
done

我有一个错误时,试图得到藏匿我的本地更改。来自git的错误说“请告诉我你是谁”,然后告诉我“运行git配置—全局用户”。email“you@example.com和git config——global user.name“你的名字”来设置你帐户的默认身份。”但是,必须使用省略——global来仅在当前存储库中设置标识。

另一种方法是使用direnv并为每个目录分离配置文件。例如:

.
├── companyA
│  ├── .envrc
│  └── .gitconfig
├── companyB
│  ├── .envrc
│  └── .gitconfig
└── personal
   ├── .envrc
   └── .gitconfig

每个.envrc应该包含如下内容:

export GIT_CONFIG_GLOBAL=$(pwd)/.gitconfig

而.gitconfig是通常的带有所需值的gitconfig。

这是我在自定义.gitconfig文件中实际拥有的:

[user]
    email = my.name@company.com

[include]
    path = ~/.gitconfig

这里只有用户。Email将被覆盖,其余配置取自默认的~/.gitconfig。

使用Github配置添加多个SSH密钥

2021年8月13日之后,git不支持HTTPs认证方法,所以我认为这个答案需要更新。

遵循以下步骤:

删除保存在~/. SSH /目录下的所有SSH密钥(公共和私有)。 创建新的SSH密钥:

ssh-keygen -t rsa -b 4096 -C "account1@gmail.com"
ssh-keygen -t rsa -b 4096 -C "account2@gmail.com"

当询问文件名时,给出默认的~/。为account1和~/配置Ssh /id_rsa。Ssh /id_rsa_acc2对应account2。

启动ssh-agent,为account1和account2添加私钥:

eval `ssh-agent`
ssh-add -k ~/.ssh/id_rsa
ssh-add -k ~/.ssh/id_rsa_acc2

使用ssh-add -l命令确认添加密钥

复制account1和account2的公钥,并将其添加到您的github帐户。命令:cat ~/.ssh/id_rsa。Pub | pbcopy(检查是否复制:pbpaste 将account1的用户名和用户邮箱设置为GitHub全局配置:

git config --global user.name "acc1_username"
git config --global user.email "account1@gmail.com"

创建~ /。Ssh /config文件,配置如下:

# account1 github
Host github.com
HostName github.com
User git
AddKeysToAgent yes
IdentityFile ~/.ssh/id_rsa

# account2 github
Host github.com-acc2
HostName github.com
User git
AddKeysToAgent yes
IdentityFile ~/.ssh/id_rsa_acc2

要为一个项目设置GitHub account2,在项目根目录中设置项目级别的用户名和电子邮件:

git config user.name "acc2_username"
git config user.email "account2@gmail.com"

现在通过使用GitHub repo的SSH链接克隆或添加起源:

# for account1 repo
git remote set-url origin git@github.com:acc1_username/reponame.git

# for account2 repo
git clone git@github.com-acc2:acc2_username/reponame.git

如果有任何疑问,请随意添加评论。