* [PATCH][Cogito] Let cg-push default to git+ssh on a host:path syntax
@ 2005-11-02 21:27 Josef Weidendorfer
0 siblings, 0 replies; only message in thread
From: Josef Weidendorfer @ 2005-11-02 21:27 UTC (permalink / raw)
To: Petr Baudis; +Cc: git
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 <Josef.Weidendorfer@gmx.de>
---
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
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2005-11-02 21:22 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-02 21:27 [PATCH][Cogito] Let cg-push default to git+ssh on a host:path syntax Josef Weidendorfer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox