diff options
Diffstat (limited to 'bin/git-bip')
| -rwxr-xr-x | bin/git-bip | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/git-bip b/bin/git-bip index 2b1245e..1f38fec 100755 --- a/bin/git-bip +++ b/bin/git-bip @@ -1,6 +1,8 @@ -#!/bin/sh +#!/bin/sh -e -# create a git repo on bip +case $1 in +(-h|--help) echo "Usage: git-bip repo [desc] # create a git repo on bip"; exit ;; +esac ssh git@bip.im git init --bare "${1%.git}.git" |
