Mirroring an archive
Bazaar 2.x (bzr)
$ bzr init-repo sftp://server/bazdir/repository
$ cd repository/branch
$ bzr push sftp://server/bazdir/repository/branch
where:
- repository is the repository we want to mirror
- server is the server with the mirrors
- bazdir is the location on the server where mirrors are stored
- branch is the branch of the project we like to publish/syncronize on the public repository
Bazaar 1.x (baz)
$ baz make-archive -l -m archive sftp://server/bazdir/archive
$ baz archive-mirror archive
where:
- archive is the archive we want to mirror
- server is the server with the mirrors
- bazdir is the location on the server where mirrors are stored