Frage

I need to generate a tarball from a project checked out from a bazaar repository. Since I'm not a regular bazaar user, can anyone tell me if there is such a command and its syntax?

War es hilfreich?

Lösung

Simple answer:

bzr export /path/to/myproj.tar.gz

Bazaar will automatically recognize the format by the suffix, but you can also use the --format option to specify the format explicitly. Files within the archive will be in the directory myproj (i.e., derived from the filename). You can override that with the --root option. See bzr export --help for more options.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top