Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30387f1 commit 31d72ccCopy full SHA for 31d72cc
git/config.py
@@ -419,6 +419,8 @@ def string_decode(v):
419
optval = string_decode(optval[1:])
420
# end handle multi-line
421
# preserves multiple values for duplicate optnames
422
+ # fix for extra back slashes so windows UNC paths are not mangled
423
+ optval = optval.replace('\\\\', '\\')
424
cursect.add(optname, optval)
425
else:
426
# check if it's an option with no value - it's just ignored by git
0 commit comments