From 3520b0475fa1f4f13b6002b280ea13b94794c121 Mon Sep 17 00:00:00 2001 From: Per Cederqvist Date: Thu, 22 Jan 2015 16:42:21 +0100 Subject: [PATCH] guilt-graph: Handle commas in branch names. This fix relies on the fact that git branch names can not contain ":". Signed-off-by: Per Cederqvist Signed-off-by: Josef 'Jeff' Sipek --- guilt-graph | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guilt-graph b/guilt-graph index 56d0e77..924a63e 100755 --- a/guilt-graph +++ b/guilt-graph @@ -51,7 +51,7 @@ safebranch=`echo "$branch"|sed 's%/%\\\\/%g'` while [ "$current" != "$base" ]; do pname=`git show-ref | sed -n -e " /^$current refs\/patches\/$safebranch/ { - s,^$current refs/patches/$branch/,, + s:^$current refs/patches/$branch/:: p q }"`