Marlin 2.0 for Flying Bear 4S/5
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.
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# firstpush
|
|
|
|
#
|
|
|
|
# Push a branch to 'origin' and open the
|
|
|
|
# commit log to watch Travis CI progress.
|
|
|
|
#
|
|
|
|
|
|
|
|
[[ $# == 0 ]] || { echo "usage: `basename $0`" 1>&2 ; exit 1; }
|
|
|
|
|
|
|
|
MFINFO=$(mfinfo) || exit 1
|
|
|
|
IFS=' ' read -a INFO <<< "$MFINFO"
|
|
|
|
FORK=${INFO[1]}
|
|
|
|
REPO=${INFO[2]}
|
|
|
|
BRANCH=${INFO[5]}
|
|
|
|
|
|
|
|
git push --set-upstream origin $BRANCH
|
|
|
|
|
|
|
|
which xdg-open >/dev/null && TOOL=xdg-open
|
|
|
|
which gnome-open >/dev/null && TOOL=gnome-open
|
|
|
|
which open >/dev/null && TOOL=open
|
|
|
|
URL="https://github.com/$FORK/$REPO/commits/$BRANCH"
|
|
|
|
|
|
|
|
if [ -z "$OPEN" ]; then
|
|
|
|
echo "Can't find a tool to open the URL:"
|
|
|
|
echo $URL
|
|
|
|
else
|
|
|
|
echo "Viewing commits on $BRANCH..."
|
|
|
|
"$OPEN" "$URL"
|
|
|
|
fi
|