我看到git允许我选择任何我想要的文件作为全局排除文件,但它看不到你可以更改默认的全局配置文件?我错过了还是不可能?有没有变通办法?
git
h5qlskok1#
Git有两种全局配置文件,一种是~/.gitconfig,另一种是$XDG_CONFIG_HOME/git/config。当~/.gitconfig不存在时,$XDG_CONFIG_HOME/git/config作为全局配置文件。我们可以在不同的路径下创建多个git/config,例如/e/git/config和/f/git/config。
~/.gitconfig
$XDG_CONFIG_HOME/git/config
git/config
/e/git/config
/f/git/config
mkdir -p /e/git touch /e/git/config mkdir -p /f/git touch /f/git/config
当我们想使用其中一个作为全局配置文件时,首先我们重命名为~/.gitconfig。
mv ~/.gitconfig ~/.gitconfig.bak
然后使用export XDG_CONFIG_HOME=或XDG_CONFIG_HOME=分配到XDG_CONFIG_HOME的路径,
export XDG_CONFIG_HOME=
XDG_CONFIG_HOME=
XDG_CONFIG_HOME
# use /e/git/config export XDG_CONFIG_HOME=/e git config --global user.name foo git config --global user.email foo@xyz.com # use /f/git/config XDG_CONFIG_HOME=/f git config --global user.name bar XDG_CONFIG_HOME=/f git config --global user.email bar@xyz.com
使用不同的名字和电子邮件,
git init test cd test touch a.txt git add a.txt # use foo and foo@xyz.com export XDG_CONFIG_HOME=/e git commit -m'hello foo' # disable XDG_CONFIG_HOME unset XDG_CONFIG_HOME touch b.txt git add b.txt # use bar and bar@xyz.com XDG_CONFIG_HOME=/f git commit -m"hello bar"
当我们想再次使用~/.gitconfig时,
mv ~/.gitconfig.bak ~/.gitconfig
1条答案
按热度按时间h5qlskok1#
Git有两种全局配置文件,一种是
~/.gitconfig
,另一种是$XDG_CONFIG_HOME/git/config
。当
~/.gitconfig
不存在时,$XDG_CONFIG_HOME/git/config
作为全局配置文件。我们可以在不同的路径下创建多个
git/config
,例如/e/git/config
和/f/git/config
。当我们想使用其中一个作为全局配置文件时,首先我们重命名为
~/.gitconfig
。然后使用
export XDG_CONFIG_HOME=
或XDG_CONFIG_HOME=
分配到XDG_CONFIG_HOME
的路径,使用不同的名字和电子邮件,
当我们想再次使用
~/.gitconfig
时,