1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
BZR TOOLS
This is is a set of helper tools for bzr.
BAZ2BZR
baz2bzr will import an Arch or Baz branch into bzr.
Data converted:
- source tree
- file ids
- log summaries
- revision ids
Data not converted:
- data on revisions merged
After more commits are made to the baz/arch branch, you can re-run baz2bzr
to import just those changes
BZR-PUSH
Uses rsync to copy a branch to a remote location. Remembers the last location
used. Will not push if
- there are unknown files
- there are uncommitted changes in the working tree.
These safeguards are intended to prevent dirty trees from being uploaded.
BZR-PULL (obsolete as of Bzr 0.5)
Uses rsync to get the latest changes from an upstream location. Remembers the
last location used. Will not pull if
- there are unknown files
- there are uncommitted changes
- there have been local commits
These safeguards are intended to prevent accidental data loss.
|