Skip to content

Commit 3a010ea

Browse files
committed
cmds: handle Windows network paths when rebasing
We need to always replace "\\" with "/" on Windows. Adjust unix_path() so that the backslash-to-forward-slash replacement is done before any other munging is performed. Closes git-cola#463 Reported-by: Johannes Loehnert <[email protected]> Signed-off-by: David Aguilar <[email protected]>
1 parent 7c23e6a commit 3a010ea

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

cola/cmds.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1181,14 +1181,14 @@ def do(self):
11811181
def unix_path(path, is_win32=utils.is_win32):
11821182
"""Git for Windows requires unix paths, so force them here
11831183
"""
1184-
unix_path = path
11851184
if is_win32():
1185+
path = path.replace('\\', '/')
11861186
first = path[0]
11871187
second = path[1]
11881188
if second == ':': # sanity check, this better be a Windows-style path
1189-
unix_path = '/' + first + path[2:].replace('\\', '/')
1189+
path = '/' + first + path[2:]
11901190

1191-
return unix_path
1191+
return path
11921192

11931193

11941194
class GitXBaseContext(object):

test/cmds_test.py

+6
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ def test_unix_path_win32(self):
3434
actual = cmds.unix_path(path, is_win32=lambda: True)
3535
self.assertEqual(expect, actual)
3636

37+
def test_unix_path_network_win32(self):
38+
path = r'\\Z\Program Files\git-cola\bin\git-dag'
39+
expect = '//Z/Program Files/git-cola/bin/git-dag'
40+
actual = cmds.unix_path(path, is_win32=lambda: True)
41+
self.assertEqual(expect, actual)
42+
3743
def test_unix_path_is_a_noop_on_sane_platforms(self):
3844
path = r'/:we/don\t/need/no/stinking/badgers!'
3945
expect = path

0 commit comments

Comments
 (0)