0

Why don't work Git ?
Gives an error message

fatal: bad boolean config value 'of' for 'core.quotepath'

What should I do to avoid this error message?

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • 3
    Have you tried removing that config value or changing it to something else? – mkrieger1 Dec 10 '22 at 21:32
  • 1
    `of` is not a boolean value. Example: https://stackoverflow.com/a/38068375/7976758 Found in https://stackoverflow.com/search?q=%5Bgit%5D+%22core.quotepath%22 – phd Dec 10 '22 at 23:01

1 Answers1

3

Since Git 2.39, I mentioned all boolean values are now explicitly described are true or false.

In your case, considering core.quotepath is by default true:

git config --global core.quotepath false

Or, to restore its default value:

git config --global --unset core.quotepath
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250