diff options
author | Georgiy Bondarenko <69736697+nehilo@users.noreply.github.com> | 2021-03-04 20:54:23 +0300 |
---|---|---|
committer | Georgiy Bondarenko <69736697+nehilo@users.noreply.github.com> | 2021-03-04 20:54:23 +0300 |
commit | e8701195e66f2d27ffe17fb514eae8173795aaf7 (patch) | |
tree | 9f519c4abf6556b9ae7190a6210d87ead1dfadde /buildroot/share/git/mfnew | |
download | kp3s-lgvl-e8701195e66f2d27ffe17fb514eae8173795aaf7.tar.xz kp3s-lgvl-e8701195e66f2d27ffe17fb514eae8173795aaf7.zip |
Initial commit
Diffstat (limited to 'buildroot/share/git/mfnew')
-rw-r--r-- | buildroot/share/git/mfnew | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/buildroot/share/git/mfnew b/buildroot/share/git/mfnew new file mode 100644 index 0000000..e491fea --- /dev/null +++ b/buildroot/share/git/mfnew @@ -0,0 +1,34 @@ +#!/usr/bin/env bash +# +# mfnew +# +# Create a new branch from the default target with the given name +# + +usage() { + echo "usage: `basename $0` [1|2|3] [name]" 1>&2 +} + +[[ $# < 3 && $1 != "-h" && $1 != "--help" ]] || { usage; exit 1; } + +MFINFO=$(mfinfo "$@") || exit 1 +IFS=' ' read -a INFO <<< "$MFINFO" +TARG=${INFO[3]} +BRANCH=pr_for_$TARG-$(date +"%G-%m-%d_%H.%M.%S") + +# BRANCH can be given as the last argument +case "$#" in + 1 ) case "$1" in + 1|2|3) ;; + *) BRANCH=$1 ;; + esac + ;; + 2 ) case "$1" in + 1|2|3) BRANCH=$2 ;; + *) usage ; exit 1 ;; + esac + ;; +esac + +git fetch upstream +git checkout --no-track upstream/$TARG -b $BRANCH |