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?
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?
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