2016-04-19 04:18:35 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# mfnew
|
|
|
|
#
|
2017-04-21 02:24:43 +00:00
|
|
|
# Create a new branch from the default target with the given name
|
2016-04-19 04:18:35 +00:00
|
|
|
#
|
|
|
|
|
2017-07-03 01:43:57 +00:00
|
|
|
[[ $# < 2 ]] || { echo "Usage: `basename $0` [branch]" 1>&2 ; exit 1; }
|
|
|
|
|
|
|
|
MFINFO=$(mfinfo) || exit 1
|
2016-04-19 04:18:35 +00:00
|
|
|
IFS=' ' read -a INFO <<< "$MFINFO"
|
|
|
|
TARG=${INFO[3]}
|
|
|
|
|
|
|
|
case "$#" in
|
2017-04-21 02:24:43 +00:00
|
|
|
0 ) BRANCH=pr_for_$TARG-$(date +"%G-%m-%d_%H.%M.%S") ;;
|
2016-04-19 04:18:35 +00:00
|
|
|
1 ) BRANCH=$1 ;;
|
|
|
|
esac
|
|
|
|
|
2017-05-05 05:46:39 +00:00
|
|
|
git fetch upstream
|
|
|
|
git checkout upstream/$TARG -b $BRANCH
|