You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
307 B
20 lines
307 B
8 years ago
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# mfqp
|
||
|
#
|
||
|
# Add all changed files, commit as "patch", do `mfrb` and `git push -f`
|
||
|
#
|
||
|
|
||
|
MFINFO=$(mfinfo) || exit
|
||
|
IFS=' ' read -a INFO <<< "$MFINFO"
|
||
|
|
||
|
case "$#" in
|
||
|
0 ) ;;
|
||
|
* ) echo "Usage: `basename $0`" 1>&2 ; exit 1 ;;
|
||
|
esac
|
||
|
|
||
|
git add * .travis.yml
|
||
|
git commit -m "patch"
|
||
|
mfrb
|
||
|
git push -f
|