aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFredrik Kuivinen <freku045@student.liu.se>2005-11-09 11:42:57 +0100
committerJunio C Hamano <junkio@cox.net>2005-11-09 12:32:36 -0800
commit186f855fc639f2063e5f02abc75ca39464a35500 (patch)
tree132cf7a143b9ed08e69399da6caa0c627d26f181
parentc8a4f5e5422677b950e7e74b29fa6631fd8ce243 (diff)
downloadgit-186f855fc639f2063e5f02abc75ca39464a35500.tar.gz
git-186f855fc639f2063e5f02abc75ca39464a35500.tar.xz
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>
-rwxr-xr-xgit-merge-recursive.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/git-merge-recursive.py b/git-merge-recursive.py
index 36578754c..90e889c30 100755
--- a/git-merge-recursive.py
+++ b/git-merge-recursive.py
@@ -295,6 +295,7 @@ def uniquePath(path, branch):
else:
raise
+ branch = branch.replace('/', '_')
newPath = path + '_' + branch
suffix = 0
while newPath in currentFileSet or \