1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
Shelf for Bzr
=============
This is the shelf plugin for bzr.
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
|