~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/upgrade-guide/tips_and_tricks.txt

  • Committer: Ian Clatworthy
  • Date: 2009-07-13 06:58:49 UTC
  • mto: (4527.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4529.
  • Revision ID: ian.clatworthy@canonical.com-20090713065849-n7g2rsjyl6dt1mgv
Apply review feedback

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
In other cases, a branch may be obsolete thanks to
12
12
another change made by yourself or others.
13
13
 
14
 
When checking for an obsolete branch, there are two
 
14
When checking for an obsolete branch, there are three
15
15
things in particular to confirm:
16
16
 
17
17
1. The working tree has no in-progress changes.
18
18
 
19
 
2. Any locally committed revisions have been merged
 
19
2. The working tree has no shelved changes.
 
20
 
 
21
3. Any locally committed revisions have been merged
20
22
   into the parent branch.
21
23
 
22
24
After changing into the root of a branch, the commands
23
25
to check these things respectively are::
24
26
 
25
27
  bzr status
 
28
  bzr shelve --list
26
29
  bzr missing --mine-only
27
30
 
28
31
If your branches are stored in a shared repository locally,
29
32
you may find the *Local Changes* tab in Bazaar Explorer's
30
33
repository view helpful here (revision 159 or later) as it
31
 
shows a summary of these things for each branch as you select it.
 
34
shows a summary of these things, excluding the shelve information
 
35
currently, for each branch as you select it.