~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2008-09-11 19:36:38 UTC
  • mfrom: (3703 +trunk)
  • mto: (3705.1.1 trunk2)
  • mto: This revision was merged to the branch mainline in revision 3708.
  • Revision ID: v.ladeuil+lp@free.fr-20080911193638-wtjyc1kcmacc6t1f
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 +----------------------+------------------------------------+
37
37
 | *number*             | revision number                    |
38
38
 +----------------------+------------------------------------+
39
 
 | **revno**:*number*   | revision number                    |
 
39
 | **revno**:*number*   | positive revision number           |
40
40
 +----------------------+------------------------------------+
41
41
 | **last**:*number*    | negative revision number           |
42
42
 +----------------------+------------------------------------+
43
 
 | *guid*               | globally unique revision id        |
44
 
 +----------------------+------------------------------------+
45
43
 | **revid**:*guid*     | globally unique revision id        |
46
44
 +----------------------+------------------------------------+
47
45
 | **before**:*rev*     | leftmost parent of ''rev''         |
48
46
 +----------------------+------------------------------------+
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      |
 
47
 | **date**:*value*     | first entry after a given date     |
 
48
 +----------------------+------------------------------------+
 
49
 | **tag**:*value*      | revision matching a given tag      |
56
50
 +----------------------+------------------------------------+
57
51
 | **ancestor**:*path*  | last merged revision from a branch |
58
52
 +----------------------+------------------------------------+
65
59
For complete details, see `Revision Identifiers`_ in the
66
60
Bazaar User Reference.
67
61
 
68
 
.. _Revision Identifiers: ../user-reference/index.html#revision-identifiers
 
62
.. _Revision Identifiers: ../user-reference/bzr_man.html#revision-identifiers
69
63
 
70
64
Numbers
71
65
~~~~~~~
86
80
revid
87
81
~~~~~
88
82
 
89
 
**revid** allows specifying an internal revision ID, as shown by ``bzr
90
 
log --show-ids`` and some other commands.
 
83
**revid** allows specifying a an internal revision ID, as shown by ``bzr
 
84
log`` and some other commands.
91
85
 
92
86
For example::
93
87
 
99
93
**before**
100
94
    ''rev'' specifies the leftmost parent of ''rev'', that is the revision
101
95
    that appears before ''rev'' in the revision history, or the revision that
102
 
    was current when ''rev'' was committed.
 
96
    was current when ''rev'' what comitted.
103
97
 
104
98
''rev'' can be any revision specifier and may be chained.
105
99
 
134
128
~~~~~~~~
135
129
 
136
130
**ancestor**:*path*
137
 
    specifies the common ancestor between the current branch and a
 
131
    specifies the common ancestor between the current branch and a 
138
132
    different branch. This is the same ancestor that would be used for
139
133
    merging purposes.
140
134