On Mon, 10 Jan 2011, Nguyen Thai Ngoc Duy wrote: > On Fri, Jan 7, 2011 at 11:33 AM, Nicolas Pitre <nico@xxxxxxxxxxx> wrote: > > Here's what I suggest: > > > > Â Â Â Âcd my_project > > Â Â Â ÂBUNDLENAME=my_project_$(date "+%s").gitbundle > > Â Â Â Âgit bundle create $BUNDLENAME --all > > Â Â Â Âmaketorrent-console your_favorite_tracker $BUNDLENAME > > > > Then start seeding that bundle, and upload $BUNDLENAME.torrent as > > bundle.torrent inside my_project.git on your server. > > I was about to ask if we could put more "trailer" sha-1 checksums to > the bundle, so we can verify which part is corrupt without > redownloading the whole thing (this is over http/ftp.. not torrent). Aren't HTTP and FTP based on TCP which is meant to be a reliable transport protocol already? In this case, isn't the final SHA1 embedded in the bundle/pack sufficient enough? Normally, your HTTP/FTP client should get you all data or partial data, but not wrong data. Nicolas