~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to README

  • Committer: Aaron Bentley
  • Date: 2005-07-25 14:17:15 UTC
  • Revision ID: abentley@panoramicfeedback.com-20050725141715-d410836f6e4a32c0
Got baz2bzr/annotate working now that ProgressBar is a function

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
BZR TOOLS
2
2
 
3
 
This is is a set of plugins for bzr.
 
3
This is is a set of helper tools for bzr.
4
4
 
5
 
BAZ-IMPORT
6
 
baz-import will import an Arch or Baz Archive into a bzr repository.
 
5
BAZ2BZR
 
6
baz2bzr will import an Arch or Baz branch into bzr.
7
7
Data converted:
8
8
- source tree
9
9
- file ids
10
10
- revision ids
11
 
- logs
12
 
- merge data
13
 
 
14
 
After more commits are made to the baz/arch branch, you can re-run baz-import
 
11
- log summaries
 
12
 
 
13
Data not converted:
 
14
- data on revisions merged
 
15
- log bodies
 
16
- symlinks in Arch trees are not handled (but can be skipped).
 
17
 
 
18
After more commits are made to the baz/arch branch, you can re-run baz2bzr
15
19
to import just those changes.
16
20
 
17
 
BAZ-IMPORT-BRANCH
18
 
baz-import-branch will import an Arch or Baz Branch into a bzr standalone tree.
19
 
See baz-import for conversion details.
20
 
 
21
 
BRANCHES
22
 
List all the branches present at, or underneath, a location.
23
 
 
24
 
BRANCH-HISTORY
25
 
Show a history of the branch, separated by committer and branch nick.
26
 
 
27
 
CBRANCH
28
 
Create a branch in a repository and a checkout elsewhere, in one command.
29
 
 
30
 
CDIFF
31
 
cdiff mimics bzr diff, but displays the diff in colour. cdiff knows how
32
 
to read a ~/.colordiffrc file, in the same format as for colordiff(1).
33
 
 
34
 
# example ~/.colordiffrc
35
 
plain=darkwhite
36
 
newtext=darkblue
37
 
oldtext=darkred
38
 
diffstuff=darkgreen
39
 
 
40
 
CLEAN-TREE
41
 
Delete unknown, ignored, or detritus files, leaving versioned files untouched.
42
 
 
43
 
FETCH-GHOSTS
44
 
Scan this branch for missing ancestors (aka "ghosts), and attempt to retrieve
45
 
them from a specified branch.
46
 
 
47
 
GRAPH-ANCESTRY
48
 
Use dot (from Graphviz) to produce graphics of a tree's ancestry.
49
 
 
50
 
IMPORT
51
 
Import a tarball into a bzr branch, or update to a fresh tarball.
52
 
 
53
 
PATCH
54
 
Use patch to apply a patch to this tree.
55
 
 
56
 
MULTI-PULL
57
 
Pull all branches and checkouts at or underneath the current location.
58
 
 
59
 
RSPUSH
 
21
The conversion algorithm is still in flux, and old data may become invalid as
 
22
newer conversion functionality is introduced.
 
23
 
 
24
 
 
25
BZR-PUSH
60
26
Uses rsync to copy a branch to a remote location.  Remembers the last location
61
27
used.  Will not push if
62
28
- there are unknown files
63
29
- there are uncommitted changes in the working tree.
64
30
These safeguards are intended to prevent dirty trees from being uploaded.
65
31
 
66
 
SHELL
67
 
An interactive shell with bzr commands available as single commands, and
68
 
nice shell completion.
69
 
 
70
 
SHELVE/UNSHELVE/SHELF
71
 
Shelve allows you to temporarily put changes you've made "on the shelf",
72
 
ie. out of the way, until a later time when you can bring them back from
73
 
the shelf with the 'unshelve' command.
74
 
 
75
 
You can put multiple items on the shelf, each time you run unshelve the
76
 
most recently shelved changes will be reinstated.
77
 
 
78
 
If filenames are specified, only the changes to those files will be
79
 
shelved, other files will be left untouched.
80
 
 
81
 
If a revision is specified, changes since that revision will be shelved.
82
 
 
83
 
If you specifiy "--pick" you'll be prompted for each hunk of the diff as
84
 
to whether you want to shelve it or not. Press "?" at the prompt for help.
85
 
 
86
 
SHOW-PATHS
87
 
List the locations used by a branch or checkout.
88
 
 
89
 
More Info
90
 
=========
91
 
 
92
 
http://bazaar.canonical.com/BzrShelveExample
93
 
 
94
 
SWITCH
95
 
Change the branch associated with a lightweight checkout, and update the tree
96
 
while retaining local changes.
97
 
 
98
 
ZAP
99
 
Safely remove undesired checkouts.
 
32
ANNOTATE
 
33
Output a version of the requested file that indicates which revision introduced
 
34
each line.
 
35
 
 
36
SHELF/UNSHELF
 
37
Temporarily put aside some changes, to restore them later.  This can be useful
 
38
to separate two sets of changes, so that they can be committed separately.
 
39
 
 
40
BZR-PULL (obsolete as of Bzr 0.5)
 
41
Uses rsync to get the latest changes from an upstream location.  Remembers the
 
42
last location used.  Will not pull if
 
43
- there are unknown files
 
44
- there are uncommitted changes
 
45
- there have been local commits
 
46
These safeguards are intended to prevent accidental data loss.