Jeff King <peff@xxxxxxxx> writes: > On Tue, Nov 22, 2011 at 08:58:56PM -0700, Paul Brossier wrote: > >> If the connection fails after uploading part of the data, it seems I >> need to start over from zero again. Is there a way to resume the upload >> instead? > > No, there isn't a way to resume just using push. > > If you have shell access on the server, one workaround you can do is to > create a bundle with the commits in question, upload it via some > resumable protocol (like sftp, http, rsync, etc), possibly taking many > attempts, and then fetch the result on the server side from the bundle > into the repository. > > See "git help bundle" for some examples. Another possibility, if it is the connection between you and the other side that is the problem, is to chunk your push in smaller pieces. That is, if you are trying to push out v3.0, you first push only to v1.0, then to v2.0, and then finally to v3.0. Peff, by the way, wouldn't this request reminds of us of a scenario we discussed recently, which I said I would imagine would be common while you dismissed as not likely to be common? -- 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