我想知道如何更改命令git config --list
的内容?我将从GitHub拉/存储库。我将在我的Windows,Linux和Mac工作站上配置这样的存储库。
答案 0 :(得分:46)
如果要设置特定存储库的配置,可以使用两个选项,从命令行进行配置,或在编辑器中编辑repo的配置文件。
只需在Git仓库的根目录中使用命令行cd
,然后运行git config
, ,不用 {{1} }和--system
标志,分别用于配置您的机器和用户Git设置:
--global
您的另一个选择是直接编辑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
标志,因此上述命令仅适用于终端工作目录中的任何回购。