merge-recursive: Fix support for branch names containing slashes

A branch name could have a slash in it.

Signed-off-by: Fredrik Kuivinen <freku045@student.liu.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Fredrik Kuivinen 2005-11-09 11:42:57 +01:00 коммит произвёл Junio C Hamano
Родитель c8a4f5e542
Коммит 186f855fc6
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -295,6 +295,7 @@ def uniquePath(path, branch):
else:
raise
branch = branch.replace('/', '_')
newPath = path + '_' + branch
suffix = 0
while newPath in currentFileSet or \