projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c8a4f5e
)
merge-recursive: Fix support for branch names containing slashes
author
Fredrik Kuivinen
<freku045@student.liu.se>
Wed, 9 Nov 2005 10:42:57 +0000
(11:42 +0100)
committer
Junio C Hamano
<junkio@cox.net>
Wed, 9 Nov 2005 20:32:36 +0000
(12:32 -0800)
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>
git-merge-recursive.py
patch
|
blob
|
history
diff --git
a/git-merge-recursive.py
b/git-merge-recursive.py
index
3657875
..
90e889c
100755
(executable)
--- 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 \