Andreas Schwab [off-list ref] writes:
Per Cederqvist [off-list ref] writes:
quoted
Avoid sed errors when the branch name contains a slash.
Signed-off-by: Per Cederqvist <redacted>
--- /usr/bin/guilt-graph~ 2011-01-25 20:15:50.000000000 +0100
+++ /usr/bin/guilt-graph 2011-10-18 12:30:31.000000000 +0200
@@ -37,9 +37,10 @@ disp "digraph G {"
current="$top"
+safebranch=`echo "$branch"|sed 's%/%\\\\/%g'`
while [ "$current" != "$base" ]; do
pname=`git show-ref | sed -n -e "
-/^$current refs\/patches\/$branch/ {
+/^$current refs\/patches\/$safebranch/ {
Alternatively, you could change the delimiter to `,':
\,^$current refs/patches/$branch, {
Isn't a comma still valid character in a branch name?
The vertical var | is available, though ;-)