This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/buildroot/share/git/mfnew

35 lines
673 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
#
# mfnew
#
2017-04-21 04:24:43 +02:00
# Create a new branch from the default target with the given name
#
2017-11-04 23:33:00 +01:00
usage() {
2020-01-05 08:24:28 +01:00
echo "usage: `basename $0` [1|2|3] [name]" 1>&2
2017-11-04 23:33:00 +01:00
}
2017-07-03 03:43:57 +02:00
2018-03-02 03:41:01 +01:00
[[ $# < 3 && $1 != "-h" && $1 != "--help" ]] || { usage; exit 1; }
2017-11-04 23:33:00 +01:00
MFINFO=$(mfinfo "$@") || exit 1
IFS=' ' read -a INFO <<< "$MFINFO"
TARG=${INFO[3]}
2017-11-04 23:33:00 +01:00
BRANCH=pr_for_$TARG-$(date +"%G-%m-%d_%H.%M.%S")
2017-11-04 23:33:00 +01:00
# BRANCH can be given as the last argument
case "$#" in
2017-11-04 23:33:00 +01:00
1 ) case "$1" in
2020-01-05 08:24:28 +01:00
1|2|3) ;;
2017-11-04 23:33:00 +01:00
*) BRANCH=$1 ;;
esac
;;
2 ) case "$1" in
2020-01-05 08:24:28 +01:00
1|2|3) BRANCH=$2 ;;
2017-11-04 23:33:00 +01:00
*) usage ; exit 1 ;;
esac
;;
esac
2017-05-05 07:46:39 +02:00
git fetch upstream
2018-04-08 13:52:29 +02:00
git checkout --no-track upstream/$TARG -b $BRANCH