diff options
-rwxr-xr-x | repo.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -25,7 +25,7 @@ case $1 in create_repo $2 dir="$repo_location$2.git" printf "git init\n" - printf "git remote add origin git@marks.kitchen:/srv/git/$dir\n" + printf "git remote add origin git@marks.kitchen:$dir\n" printf "git push origin master\n" ;; list) # list repos on the server @@ -37,7 +37,7 @@ case $1 in ;; clone) # clone a repo from the list dir="$repo_location$2.git" - git clone git@marks.kitchen:/srv/git/$dir + git clone git@marks.kitchen:$repo_location$dir cd $dir ;; *) |