Git for Windows。
我正在学习Git。
引用git help config
:
定义值的行可以继续到下一行 以\结束它;剥离了反引号和行尾。
我试过了:
[user]
name = Andrey\;
Bushman
和此:
[user]
name = 'Andrey\;
Bushman'
和此:
[user]
name = 'Andrey '\;
'Bushman'
和此:
[user]
name = 'Andrey \;'
'Bushman'
而不是这个(工作变体):
[user]
name = Andrey Bushman
但是我收到错误:fatal: error in 6 line.
(这是\;
行的索引)对于命令:
git config --global user.name
为什么会这样?
答案 0 :(得分:6)
这可能是因为“;”是该句中的标点字符。它不是用于继续下一行的字符序列的一部分,即你应该只使用“\”。