Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> writes: > +Create, unpack, and manipulate "bundle" files. Bundles are used for > +the "offline" transfer of Git objects without an active "server" > +sitting on the other side of the network connection. > + > +They can be used to create both incremental and full backups of a > +repository, and to relay the state of the references in one repository > +to another. > + > +Other git commands that understand protocols such as `ssh://` and > +`https://` can also operate on bundle files. It is possible I'd rather drop "Other", especially given that it is irrelevant if "git bundle" understands "<scheme>://" or not. Instead, I'd somehow limit the "git commands" to those that are meant to "read" from the other side. IOW, "git push git.bndl master" would not make sense (yet). Thanks.