From cfc106585f52a3b1124dbbad0026f705470113e6 Mon Sep 17 00:00:00 2001 From: Jan Kratochvil Date: Wed, 31 Jul 2013 17:39:45 +0200 Subject: [PATCH] dashtopatch: +support file "origin" --- bin/dashtopatch | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/bin/dashtopatch b/bin/dashtopatch index 73952a0..717c5cc 100755 --- a/bin/dashtopatch +++ b/bin/dashtopatch @@ -9,16 +9,21 @@ if [ $# != 1 ] || ! echo "$1" | grep -q '-';then echo >&2 "Syntax: $0 branch-list-delimited-by-dashes" exit 1 fi -base="gdb/master" +if [ -f origin ];then + origin="`cat origin`" +else + origin="gdb/master" +fi +base=$origin gerrit=true if git branch -D gerrit;then - git checkout gdb/master + git checkout $origin git checkout -b gerrit else gerrit=false fi for elem in $(echo "$1"|tr '-' ' ');do - if [ "$base" = "gdb/master" ];then + if [ "$base" = $origin ];then next="$elem" else next="$base-$elem" -- 1.8.3.1