我正在使用安装了git的macOS High Sierra版本10.13.4。我试图找到我的机器级gitconfig
文件。
类型的:
$ git config --system --list
GOT:
fatal: unable to read config file '/etc/gitconfig': No such file or directory
为什么会这样?我怎么能找到它?
用户级别的git文件存在于~/.gitconfig
。
答案 0 :(得分:0)
这种情况正在发生,因为您没有文件/etc/gitconfig
。
如果您只是创建文件,错误就会消失。由于它是系统目录,因此您需要sudo
。
sudo touch /etc/gitconfig
如果没有该文件,即使在我的Ubuntu系统上也会出现此错误,因此它不是特定于OSX的问题。
git config --system --list
fatal: unable to read config file '/etc/gitconfig': No such file or directory
sudo touch /etc/gitconfig
git config --system --list
# No output