add gren script

This commit is contained in:
Daniel Lundin 2020-03-09 19:37:57 +01:00
parent a8b652ce6b
commit decbbf9b6e
No known key found for this signature in database
GPG key ID: 6AB527C9196ACDCC

16
bin/gren Executable file
View file

@ -0,0 +1,16 @@
#!/bin/sh
set -ex
if [[ -z "$1" ]]; then
echo "Usage: $0 <branch name>"
exit 1
fi
hub sync
if git rev-parse --verify --quiet $1; then
git checkout $1
else
git checkout -b $1 master
git push -u origin $1
fi