diff options
-rwxr-xr-x | repo.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -26,7 +26,8 @@ case $1 in dir="$repo_location$2.git" printf "git init\n" printf "git remote add origin git@marks.kitchen:$dir\n" - printf "git push origin master\n" + printf "git branch --set-upstream-to=origin/master master\n" + printf "git push\n" ;; list) # list repos on the server get_repos |