Not all of jgit's protocols will support push, as it may take time to build their implementations or simply prove impractical. Some users may not understand what a walking transport is, but they can understand that http isn't supported for push. Signed-off-by: Shawn O. Pearce <spearce@xxxxxxxxxxx> --- .../org/spearce/jgit/transport/WalkTransport.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/org.spearce.jgit/src/org/spearce/jgit/transport/WalkTransport.java b/org.spearce.jgit/src/org/spearce/jgit/transport/WalkTransport.java index 29dd661..e208b12 100644 --- a/org.spearce.jgit/src/org/spearce/jgit/transport/WalkTransport.java +++ b/org.spearce.jgit/src/org/spearce/jgit/transport/WalkTransport.java @@ -59,7 +59,7 @@ abstract class WalkTransport extends Transport { @Override public PushConnection openPush() throws NotSupportedException { - throw new NotSupportedException( - "Push is not supported by object walking transports"); + final String s = getURI().getScheme(); + throw new NotSupportedException("Push not supported over " + s + "."); } } -- 1.5.6.74.g8a5e -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html