Marlin_Firmware/buildroot/share/git/mfnew

33 lines
667 B
Plaintext
Raw Normal View History

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