chiark / gitweb /
break patch searching until we update wrt new FORMAT
[topbloke.git] / topbloke-merge-driver
index 891bfa4ca919c873240369881cff53e1e316473a..a3d199920bac4a2e952859b9562886aac5a94338 100755 (executable)
@@ -4,7 +4,8 @@ set -e
 fail () { echo >&2 "$0: $*"; exit 127; }
 
 case "$1" in
---v1) how=tip ;;               # merge into tip from another tip of this patch
+--v1) how=same ;;              # merge into tip from another tip of this patch
+                               #  or into base from another base of this patch
 --v1-base) how=base ;;         # merge into tip from a base of this patch
 --v1-dep) how=dep ;;           # merge into base from a dep's tip
 *) fail "bad usage" ;;
@@ -31,13 +32,13 @@ base.deps)
 base.props)
        exec topbloke-merge-lists -M$markersize -P -UDeleted "$@"
        ;;
-tip.msg)
+same.msg)
        exec git-merge-file --marker-size=$markersize "$@"
        ;;
-tip.deps|*.included)
+same.deps|*.included)
        exec topbloke-merge-lists -M$markersize "$@"
        ;;
-tip.props|*.pprops)
+same.props|*.pprops)
        exec topbloke-merge-lists -M$markersize -P "$@"
        ;;
 *)