~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

(jameinel) Allow 'bzr serve' to interpret SIGHUP as a graceful shutdown.
 (bug #795025) (John A Meinel)

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
 +----------------------+------------------------------------+
59
65
For complete details, see `Revision Identifiers`_ in the
60
66
Bazaar User Reference.
61
67
 
62
 
.. _Revision Identifiers: ../user-reference/bzr_man.html#revision-identifiers
 
68
.. _Revision Identifiers: ../user-reference/index.html#revision-identifiers
63
69
 
64
70
Numbers
65
71
~~~~~~~
80
86
revid
81
87
~~~~~
82
88
 
83
 
**revid** allows specifying a an internal revision ID, as shown by ``bzr
84
 
log`` and some other commands.
 
89
**revid** allows specifying an internal revision ID, as shown by ``bzr
 
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 comitted.
 
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