Firmware2/buildroot/share/git/mfnew

33 lines
667 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
#
2021-12-27 21:28:59 +01:00
usage() { echo "usage: `basename $0` [1|2] [name]" 1>&2 ; }
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
2021-11-03 13:02:21 +01:00
1|2) ;;
2017-11-04 23:33:00 +01:00
*) BRANCH=$1 ;;
esac
;;
2 ) case "$1" in
2021-11-03 13:02:21 +01:00
1|2) 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