当我运行任何git命令来处理fatal: bad config file line 12 in .git/config
时,我收到错误git config
,除非我在/ c / Windows / System32中。我已经尝试过运行git bash作为管理员,它没有什么区别。
当我在/ c / Users //中查看我的.gitconfig文件时,它看起来像:
[core]
symlinks = false
autocrlf = true
[color]
diff = auto
status = auto
branch = auto
interactive = true
[pack]
packSizeLimit = 2g
[help]
format = html
[http]
sslCAinfo = /bin/<file>
[https]
proxy=<internal proxy>
[user]
name=<name>
email=<email>
[sendemail]
smtpserver = /bin/<file>
[diff "astextplain"]
textconv = astextplain
[rebase]
autosquash = true
当然<name>, <internal proxy>, <file> and <email>
被替换为正确的详细信息。此外,该文件的文件类型为GITCONFIG
文件,称为.gitconfig
。
/ etc /中的我的gitconfig文件如下所示:
[core]
symlinks = false
autocrlf = true
[color]
diff = auto
status = auto
branch = auto
interactive = true
[pack]
packSizeLimit = 2g
[http]
sslCAinfo = /bin/<file>
[https]
proxy=<internal proxy>
[user]
name=<name>
email=<email>
[sendemail]
smtpserver = /bin/<file>
[diff "astextplain"]
textconv = astextplain
[rebase]
autosquash = true
同样,<name>, <internal proxy>, <file> and <email>
将替换为正确的详细信息。在这种情况下,文件的文件类型为File
,称为gitconfig
。
任何人都可以帮忙解决我的问题,以便继续运行git命令吗?
答案 0 :(得分:-1)
这个问题的答案是我没有在预期的存储库文件夹中运行git init
,因此没有存储库。