1

core.excludesfileuser.excludesfile在 git 存储库中有什么区别?

我正在使用以下代码排除我的一些配置文件,但没有排除我的配置文件。

$ echo 'globals/js/config.js' > .gitignore_local
$ git add .gitignore_local
$ git config user.excludesfile .gitignore_local

当我使用从本地文件夹中提取文件时

$ git pull [remote_path_alias] master

config.js文件更新。

4

1 回答 1

1

core.excludesfile被 Git 识别。user.excludesfile不是有效的 git 配置设置。

要为您使用的用户(有点不幸地命名)设置配置--global变量git config

于 2013-08-22T11:13:34.350 回答