pqfeng@ubuntu:~/kernel413$ git clone https://github.com/Lichee-Pi/linux.git -b zero-4.13.y
Cloning into 'linux'...
fatal: bad config file line 1 in /home/pqfeng/kernel413/linux/.git/config
我确定kernel413是一个空目录。
离线
down vote
I solved this byopen .git/config file
clear all the NULL values in the file
save and close the file
git add .
还有其他几个答案也试一试.
离线
https://blog.csdn.net/cijiancao/article/details/80819975
git使用问题:fatal: bad config line 1 in file C:/Users/Administrator/.gitconfig
在用git bash操作本地仓库的时候遇到如下问题
fatal: bad config line 1 in file C:/Users/Administrator/.gitconfig
看提示的意思:是git配置文件出了问题,找到提示的目录,把该文件下 .gitconfig文件删除例如我的是:C:/Users/Administrator/.gitconfig
然后进行如下操作
1.打开git bash
2.执行如下配置命令
git config --global user.name "your name"
git config --global user.email "your email"
然后刚才删除的.gitconfig又重新生成了,git也可以正常使用了。
离线
我在服务器上不行。 直接转到虚拟机上解决的。没去纠结这个问题。
离线