如何创建新的Git配置文件?

时间:2019-04-04 15:17:41

标签: macos github

我想配置Git,但是我之前删除了我的配置文件(一个大错误)。它显示了我

  

没有这样的文件或目录

当我放入~/.gitconfig时:

$ git config global user.name "a"
error: key does not contain a section: global
$ ~/.gitconfig
-bash:/.gitconfig: No such file or directory

1 个答案:

答案 0 :(得分:1)

global中添加破折号:

git config --global user.name "a"

global中没有破折号将被解释为一部分,但这是无效的。您需要--global flag

在运行此命令之前文件不需要存在。如果不存在,Git会创建它。