various scripts I use to make my life easier

n00b mistake -- VAR= not $VAR=

Changed files
+1 -1
git-shell-commands
+1 -1
git-shell-commands/new-repo
···
echo "What is your projects name?"
read PROJECT_NAME
if [[ $PROJECT_NAME!=*.git ]]; then
-
$PROJECT_NAME="${PROJECT_NAME}.git"
+
PROJECT_NAME="${PROJECT_NAME}.git"
fi
echo "What's the mirror repo remote url?(leave blank if private)"
read REMOTE_URL