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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
BZR TOOLS
This is is a set of plugins for bzr.
BAZ-IMPORT
baz-import will import an Arch or Baz Archive into a bzr repository.
Data converted:
- source tree
- file ids
- revision ids
- logs
- merge data
After more commits are made to the baz/arch branch, you can re-run baz-import
to import just those changes.
BAZ-IMPORT-BRANCH
baz-import-branch will import an Arch or Baz Branch into a bzr standalone tree.
See baz-import for conversion details.
RSPUSH
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.
SHELVE/UNSHELVE/SHELF
Shelve allows you to temporarily put changes you've made "on the shelf",
ie. out of the way, until a later time when you can bring them back from
the shelf with the 'unshelve' command.
You can put multiple items on the shelf, each time you run unshelve the
most recently shelved changes will be reinstated.
If filenames are specified, only the changes to those files will be
shelved, other files will be left untouched.
If a revision is specified, changes since that revision will be shelved.
If you specifiy "--pick" you'll be prompted for each hunk of the diff as
to whether you want to shelve it or not. Press "?" at the prompt for help.
More Info
=========
http://bazaar.canonical.com/BzrShelveExample
CLEAN-TREE
Delete unknown (or, optionally, ignored) files, leaving versioned files
untouched.
BRANCH-HISTORY
Show a history of the branch, separated by committer and branch nick.
GRAPH-ANCESTRY
Use dot (from Graphviz) to produce graphics of a tree's ancestry.
FETCH-GHOSTS
Scan this branch for missing ancestors (aka "ghosts), and attempt to retrieve
them from a specified branch.
PATCH
Use patch to apply a patch to this tree.
ZAP
Safely remove undesired checkouts
|