Git配置目录范围,包含多个存储库

时间:2016-10-26 22:06:55

标签: git directory repository git-config

情况如下:

  • 我有多个,我在其中编写代码,例如专业和空闲时间。这些由我的计算机上的不同目录表示。
  • 每个域都包含多个Git存储库,位于其中一个域目录中的分层目录结构中。

每个域,我想使用不同的电子邮件地址作为作者/提交者信息的一部分。也就是说,我希望我的私人地址列在我的空闲时间项目中,我的公司地址在我的专业地址中。

git config知道3个范围:存储库,全局和系统范围。 我基本上需要的是存储库和全局之间的第四个范围,代表一组存储库(或者只是文件系统中的目录)。

似乎git config不允许这样做。当然,我可以为每个存储库设置电子邮件地址,但我希望每次设置或克隆存储库时都避免使用此手动步骤。一种选择是编写一个包装git init/clonegit config的脚本,还有其他想法吗?

3 个答案:

答案 0 :(得分:9)

基于https://stackoverflow.com/a/44036640/2377961我认为我找到了一种可行的方式。

首先为您的"自定义范围创建不同的配置文件" (例如专业,空闲时间等)并为每个范围添加所需的用户配置

# ~/all-projects.gitconfig
[user]
   name = TheOperator

# ~/professional.gitconfig
[user]
   email = yourname@yourwork.com

# ~/freetime.gitconfig
[user]
   email = yourname@private-email.com

比在标准gitconfig中添加这样的行:

# ~/.gitconfig
[include]
    path = all-projects.gitconfig
[includeIf "gitdir/i:c:/work/"]
    path = professional.gitconfig
[includeIf "gitdir/i:c:/freetime/"]
    path = freetime.gitconfig 

" gitdir / i"之后的目录应该与项目组的父目录匹配。 在我的示例中,您应该将您的git-repos存储为freetime-domains,例如" C:/freetime/my-freetime.domain/.git"

答案 1 :(得分:2)

我想出的解决方案受到Scott Weldon's answer的启发。由于它不能直接适用于我的情况,我修改了hook的bash脚本并改进了几个部分*。

从主目录中假设以下目录结构:

~
   .gitconfig           // [init] templatedir
   .git-template
      hooks
         post-checkout  // our bash script
   MyDomain
      .gitconfig        // [user] name, email

最初我让Git知道我的模板目录在哪里。在Windows上,您可能需要指定绝对路径(C:/Users/MyUser/.git-template)。

git config --global init.templatedir '~/.git-template'

~/MyDomain/.gitconfig中,我存储该目录的配置(),该目录应该应用于其中的所有存储库及其子目录。

cd ~/MyDomain
git config --file .gitconfig user.name "My Name"
git config --file .gitconfig user.email "my@email.com"

有趣的部分是post-checkout bash脚本,它定义了post-checkout钩子。我使用自定义user.inferredConfig标志只执行一次(在git clone上),而不是重复执行{在git checkout上)。当然也可以创建一个单独的文件来表示该状态。

#!/bin/bash

# Git post-checkout hook for automated use of directory-local git config
# https://stackoverflow.com/a/40450106

# Check for custom git-config flag, to execute hook only once on clone, not repeatedly on every checkout
if grep -q "inferredConfig" .git/config
then
    exit
fi

# Automatically set Git config values from parent folders.
echo "Infer Git configuration from directory..."

# Go upwards in directory hierarchy, examine all .gitconfig files we find
# Allows to have multiple nested .gitconfig files with different scopes
dir=$(pwd)
configFiles=()
while [ "$dir" != "/" ]
do
    # Skip first directory (the newly created Git repo)
    dir=$(dirname "$dir")
    if [ -f "$dir/.gitconfig" ]
    then
        configFiles+=("$dir/.gitconfig")
    fi
done

# Iterate through configFiles array in reverse order, so that more local configurations override parent ones
for (( index=${#configFiles[@]}-1 ; index>=0 ; index-- )) ; do
    gitconfig="${configFiles[index]}"

    echo "* From $gitconfig:"
    # Iterate over each line in found .gitconfig file
    output=$(git config --file "$gitconfig" --list)
    while IFS= read -r line
    do
        # Split line into two parts, separated by '='
        IFS='=' read key localValue <<< "$line"

        # For values that differ from the parent Git configuration, adjust the local one
        parentValue=$(git config $key)
        if [ "$parentValue" != "$localValue" ]
        then
            echo "  * $key: $localValue"
            git config "$key" "$localValue"
        fi
    done <<< "$output"

    # Set custom flag that we have inferred the configuration, so that future checkouts don't need to do it
    git config user.inferredConfig 1
done

*:原始代码的更改包括:

  1. 使用路径中的空格(在Windows上特别有趣)
  2. 正确解析来自.gitconfig的键值对(don't read lines with foriterate with while read instead
  3. 检查从根目录到本地目录的.gitconfig个文件,反之亦然
  4. 仅在初始克隆时调用钩子,而不是在每次结帐时调用
  5. 输出git clone
  6. 上应用的配置设置

答案 2 :(得分:0)

作为一个简单的解决方案,请使用类似autoenv的内容(抱歉自我宣传),使用环境变量设置您的邮件地址:

echo 'export GIT_AUTHOR_NAME="Your name"' > professional/.env
echo 'export GIT_AUTHOR_EMAIL="you@example.com"' >> professional/.env
cd professional