diff options
author | Jonas Smedegaard <dr@jones.dk> | 2017-04-18 12:48:28 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2017-04-18 12:48:28 +0200 |
commit | 269bc4af0abab2c51eb2b42665a3133a2609277b (patch) | |
tree | 9a4de8bee1e3891775d697650ad0daa787386d76 /localgit-remote-init-push | |
parent | 318cc3297c32db724115609632ddc582d7bd16b5 (diff) |
Fix typo.
Diffstat (limited to 'localgit-remote-init-push')
-rwxr-xr-x | localgit-remote-init-push | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/localgit-remote-init-push b/localgit-remote-init-push index 7204133..6234cbe 100755 --- a/localgit-remote-init-push +++ b/localgit-remote-init-push @@ -68,6 +68,6 @@ GIT_REMOTE=${4:-origin} [ origin != "$GIT_REMOTE" ] || ORIGIN_IS_DEFAULT=yes -[ -z "$GIT_CONN" ] || ssh "$SSH_CONN" git init --bare --shared "$BASEPATH"/"$PROJECT".git +[ -z "$SSH_CONN" ] || ssh "$SSH_CONN" git init --bare --shared "$BASEPATH"/"$PROJECT".git git remote add "$GIT_REMOTE" "$SSH_CONN":"$BASEPATH"/"$PROJECT".git git push ${ORIGIN_IS_DEFAULT:+--set-upstream "$GIT_REMOTE"} master |