为不同的存储库设置不同的配置

时间:2013-08-12 07:18:08

标签: git github

我想知道如何更改命令git config --list的内容?我将从GitHub拉/存储库。我将在我的Windows,Linux和Mac工作站上配置这样的存储库。

1 个答案:

答案 0 :(得分:46)

如果要设置特定存储库的配置,可以使用两个选项,从命令行进行配置,或在编辑器中编辑repo的配置文件。

选项1:通过命令行配置

只需在Git仓库的根目录中使用命令行cd,然后运行git config ,不用 {{1} }和--system标志,分别用于配置您的机器和用户Git设置:

--global

选项2:直接编辑配置文件

您的另一个选择是直接编辑repo配置文件。使用默认的Git克隆,它通常是repo的根文件夹中的cd <your-repo> git config <setting-name> <setting-value> git config <setting-name>=<setting-value> # alternate syntax 文件。只需在编辑器中打开该文件并开始添加设置,或使用.git/config在命令行为其调用编辑器。

资源

您可以在official Linux Kernel Git documentation for git config了解有关配置Git的更多信息。特别是,您可能有兴趣看到example Git config

git config --edit

修改

解决original poster's question about how to change user.name and user.email per repository,这是如何通过命令行完成的。切换到每个存储库,然后运行以下命令:

# Core variables
[core]
        ; Don't trust file modes
        filemode = false
# Our diff algorithm
[diff]
        external = /usr/local/bin/diff-wrapper
        renames = true
[branch "devel"]
        remote = origin
        merge = refs/heads/devel
# Proxy settings
[core]
        gitProxy="ssh" for "kernel.org"
        gitProxy=default-proxy ; for the rest
[include]
        path = /path/to/foo.inc ; include by absolute path
        path = foo ; expand "foo" relative to the current file
        path = ~/foo ; expand "foo" in your $HOME directory

由于您没有使用git config user.name "<name>" git config user.email "<email>" --system标志,因此上述命令仅适用于终端工作目录中的任何回购。