diff options
Diffstat (limited to 'git-create')
-rwxr-xr-x | git-create | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,14 +4,14 @@ # create a repo of provided name on macon and make it the upstream name=$1 -[[ ! $(echo "$name" | grep ".git" -) ]] && name="$1.git" +[ ! $(echo "$name" | grep ".git" -) ] && name="$1.git" description=$2 echo "'$name': '$description'" echo "Create repo?" read choice -[[ ! $choice == "y" ]] && exit 1 +[ ! $choice == "y" ] && exit 1 ssh git@53hor.net << EOF cd /srv/git |