我想配置Git,但是我之前删除了我的配置文件(一个大错误)。它显示了我
没有这样的文件或目录
当我放入~/.gitconfig
时:
$ git config global user.name "a"
error: key does not contain a section: global
$ ~/.gitconfig
-bash:/.gitconfig: No such file or directory
答案 0 :(得分:1)
在global
中添加破折号:
git config --global user.name "a"
global
中没有破折号将被解释为一部分,但这是无效的。您需要--global
flag。
在运行此命令之前文件不需要存在。如果不存在,Git会创建它。