From 917f7280c69173b77ffc91dc2c21c0f34c0fadb9 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Mon, 20 Mar 2017 13:25:21 -0700 Subject: [PATCH] Meta/ML: customize the name of the maint track when determining what to merge later into it --- ML | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ML b/ML index f8376cd2af..7a74151b62 100755 --- a/ML +++ b/ML @@ -1,13 +1,13 @@ #!/bin/sh # Merge later... -target=maint +: "${target:=maint}" "${here:=master}" # Read from RelNotes and find mergeable topics search_topics () { tmp=/tmp/ML.$$ trap 'rm -f "$tmp"' 0 - git rev-list --parents --first-parent $target..master >"$tmp" + git rev-list --parents --first-parent $target..$here >"$tmp" x40='[0-9a-f]' x40="$x40$x40$x40$x40$x40" -- 2.47.3