From c0dd214c8a6075499368e2be79d01205be715f97 Mon Sep 17 00:00:00 2001 From: rl1987 Date: Mon, 30 Dec 2019 12:41:08 +0700 Subject: [PATCH 1/2] Remove 0.2.9 from git scripts --- scripts/git/git-merge-forward.sh | 21 ++++++--------------- scripts/git/git-pull-all.sh | 7 ------- scripts/git/git-push-all.sh | 9 +-------- scripts/git/git-setup-dirs.sh | 7 ------- 4 files changed, 7 insertions(+), 37 deletions(-) diff --git a/scripts/git/git-merge-forward.sh b/scripts/git/git-merge-forward.sh index a6df479590..c6e02294c8 100755 --- a/scripts/git/git-merge-forward.sh +++ b/scripts/git/git-merge-forward.sh @@ -11,8 +11,8 @@ function usage() echo " -n: dry run mode" echo " (default: run commands)" echo " -t: test branch mode: create new branches from the commits checked" - echo " out in each maint directory. Call these branches prefix_029," - echo " prefix_035, ... , prefix_master." + echo " out in each maint directory. Call these branches prefix_035," + echo " prefix_040, ... , prefix_master." echo " (default: merge forward maint-*, release-*, and master)" echo " -u: in test branch mode, if a prefix_* branch already exists," echo " skip creating that branch. Use after a merge error, to" @@ -89,8 +89,6 @@ TOR_WKT_NAME=${TOR_WKT_NAME:-"tor-wkt"} # Only used in test branch mode # There is no previous branch to merge forward, so the second and fifth items # must be blank ("") -MAINT_029_TB=( "maint-0.2.9" "" "$GIT_PATH/$TOR_WKT_NAME/maint-0.2.9" \ - "_029" "") # Used in maint/release merge and test branch modes MAINT_035=( "maint-0.3.5" "maint-0.2.9" "$GIT_PATH/$TOR_WKT_NAME/maint-0.3.5" \ "_035" "_029") @@ -103,7 +101,6 @@ MAINT_042=( "maint-0.4.2" "maint-0.4.1" "$GIT_PATH/$TOR_WKT_NAME/maint-0.4.2" \ MAINT_MASTER=( "master" "maint-0.4.2" "$GIT_PATH/$TOR_MASTER_NAME" \ "_master" "_042") -RELEASE_029=( "release-0.2.9" "maint-0.2.9" "$GIT_PATH/$TOR_WKT_NAME/release-0.2.9" ) RELEASE_035=( "release-0.3.5" "maint-0.3.5" "$GIT_PATH/$TOR_WKT_NAME/release-0.3.5" ) RELEASE_040=( "release-0.4.0" "maint-0.4.0" "$GIT_PATH/$TOR_WKT_NAME/release-0.4.0" ) RELEASE_041=( "release-0.4.1" "maint-0.4.1" "$GIT_PATH/$TOR_WKT_NAME/release-0.4.1" ) @@ -116,13 +113,11 @@ ORIGIN_PATH="$GIT_PATH/$TOR_MASTER_NAME" # SC2034 -- shellcheck thinks that these are unused. We know better. ACTUALLY_THESE_ARE_USED=< option. The test branch base # name option makes git-merge-forward.sh create new test branches: -# _029, _035, ... , _master, and merge forward. +# _035, _040, ... , _master, and merge forward. TEST_BRANCH_PREFIX= # Controlled by the -u option. The use existing option checks for existing @@ -180,8 +175,6 @@ if [ -z "$TEST_BRANCH_PREFIX" ]; then # List of all worktrees to work on. All defined above. Ordering is important. # Always the maint-* branch BEFORE then the release-*. WORKTREE=( - RELEASE_029[@] - MAINT_035[@] RELEASE_035[@] @@ -199,10 +192,8 @@ if [ -z "$TEST_BRANCH_PREFIX" ]; then else - # Test branch mode: merge to maint only, and create a new branch for 0.2.9 + # Test branch mode: merge to maint only WORKTREE=( - MAINT_029_TB[@] - MAINT_035[@] MAINT_040[@] @@ -427,9 +418,9 @@ for ((i=0; i Date: Mon, 30 Dec 2019 12:58:46 +0700 Subject: [PATCH 2/2] Add changes file --- changes/ticket32772 | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 changes/ticket32772 diff --git a/changes/ticket32772 b/changes/ticket32772 new file mode 100644 index 0000000000..217ae48438 --- /dev/null +++ b/changes/ticket32772 @@ -0,0 +1,4 @@ + o Minor features (developer tooling): + - Remove 0.2.9 series branches from git scripts (git-merge-forward.sh, + git-pull-all.sh, git-push-all.sh, git-setup-dirs.sh). Closes ticket + 32772.