无论您运行命令的顺序如何,您都将成为 Jack inrepo1
和 Jill in 。repo2
从git config
手册页:
If not set explicitly with --file, there are four files where git config will search for configuration options:
$GIT_DIR/config
Repository specific configuration file.
~/.gitconfig
User-specific configuration file. Also called "global" configuration file.
$XDG_CONFIG_HOME/git/config
Second user-specific configuration file. If $XDG_CONFIG_HOME is not set or empty, $HOME/.config/git/config will be used. Any single-valued variable
set in this file will be overwritten by whatever is in ~/.gitconfig. It is a good idea not to create this file if you sometimes use older versions of
Git, as support for this file was added fairly recently.
$(prefix)/etc/gitconfig
System-wide configuration file.
Git 按该顺序加载这些文件。您的本地存储库的, .git/config
, 优先于~/.gitconfig
, 优先于$HOME/.config/git/config
, 优先于/etc/gitconfig
. 而且:
All writing options will per default write to the repository specific configuration file. Note that this also affects options like --replace-all and
--unset. git config will only ever change one file at a time.
该--global
标志不会更改.git/config
您系统上的所有内容,只是~/.gitconfig
.