~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/user-guide/specifying_revisions.txt

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-09-01 08:02:42 UTC
  • mfrom: (5390.3.3 faster-revert-593560)
  • Revision ID: pqm@pqm.ubuntu.com-20100901080242-esg62ody4frwmy66
(spiv) Avoid repeatedly calling self.target.all_file_ids() in
 InterTree.iter_changes. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 +----------------------+------------------------------------+
37
37
 | *number*             | revision number                    |
38
38
 +----------------------+------------------------------------+
39
 
 | **revno**:*number*   | positive revision number           |
 
39
 | **revno**:*number*   | revision number                    |
40
40
 +----------------------+------------------------------------+
41
41
 | **last**:*number*    | negative revision number           |
42
42
 +----------------------+------------------------------------+
 
43
 | *guid*               | globally unique revision id        |
 
44
 +----------------------+------------------------------------+
43
45
 | **revid**:*guid*     | globally unique revision id        |
44
46
 +----------------------+------------------------------------+
45
47
 | **before**:*rev*     | leftmost parent of ''rev''         |
46
48
 +----------------------+------------------------------------+
47
 
 | **date**:*value*     | first entry after a given date     |
48
 
 +----------------------+------------------------------------+
49
 
 | **tag**:*value*      | revision matching a given tag      |
 
49
 | *date-value*         | first entry after a given date     |
 
50
 +----------------------+------------------------------------+
 
51
 | **date**:*date-value*| first entry after a given date     |
 
52
 +----------------------+------------------------------------+
 
53
 | *tag-name*           | revision matching a given tag      |
 
54
 +----------------------+------------------------------------+
 
55
 | **tag**:*tag-name*   | revision matching a given tag      |
50
56
 +----------------------+------------------------------------+
51
57
 | **ancestor**:*path*  | last merged revision from a branch |
52
58
 +----------------------+------------------------------------+
81
87
~~~~~
82
88
 
83
89
**revid** allows specifying a an internal revision ID, as shown by ``bzr
84
 
log`` and some other commands.
 
90
log --show-ids`` and some other commands.
85
91
 
86
92
For example::
87
93
 
93
99
**before**
94
100
    ''rev'' specifies the leftmost parent of ''rev'', that is the revision
95
101
    that appears before ''rev'' in the revision history, or the revision that
96
 
    was current when ''rev'' what committed.
 
102
    was current when ''rev'' was committed.
97
103
 
98
104
''rev'' can be any revision specifier and may be chained.
99
105
 
128
134
~~~~~~~~
129
135
 
130
136
**ancestor**:*path*
131
 
    specifies the common ancestor between the current branch and a 
 
137
    specifies the common ancestor between the current branch and a
132
138
    different branch. This is the same ancestor that would be used for
133
139
    merging purposes.
134
140