Let cg-push default to git+ssh on a host:path syntax
cg-update/cg-fetch fall back to git+ssh protocol for host:path
syntax. cg-push should do the same.
Signed-off-by: Josef Weidendorfer <redacted>
---
cg-push | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
applies-to: 9294c00b9e87de048c0d29f8ad99c0a6d2733b16
1f6693e09a8aa4c02297472764b972a07d1c0d02
diff --git a/cg-push b/cg-push
index 4c29b33..d63fb65 100755
--- a/cg-push
+++ b/cg-push
@@ -51,8 +51,12 @@ if echo "$uri" | grep -q "^http://"; the
die "pushing over HTTP not supported yet"
elif echo "$uri" | grep -q "^git+ssh://"; then
git-send-pack "$(echo "$uri" | sed 's#^git+ssh://\([^/]*\)\(/.*\)$#\1:\2#')" $_git_head$sprembranch "${tags[@]}"
+elif echo "$uri" | grep -q "^rsync://"; then
+ die "pushing over rsync not supported"
elif echo "$uri" | grep -q ":"; then
- die "pushing over rsync not supported"
+ echo "WARNING: I guessed the host:path syntax was used and fell back to the git+ssh protocol."
+ echo "WARNING: The host:path syntax is evil because it is implicit. Please just use a URI."
+ git-send-pack "$uri" $_git_head$sprembranch "${tags[@]}"
else
remgit="$uri"; [ -d "$remgit/.git" ] && remgit="$remgit/.git"
if is_same_repo "$_git_objects" "$remgit/objects"; then---
0.99.9