~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Patch Queue Manager
  • Date: 2011-09-22 14:12:18 UTC
  • mfrom: (6155.3.1 jam)
  • Revision ID: pqm@pqm.ubuntu.com-20110922141218-86s4uu6nqvourw4f
(jameinel) Cleanup comments bzrlib/smart/__init__.py (John A Meinel)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Revision specs and ranges
2
 
=========================
3
 
 
4
 
**bzr** has a very expressive way to specify a revision, or a range of revisions.
5
 
We'll take the example of the **log** command.
6
 
 
7
 
To specify a range of revisions, use for example::
 
1
Specifying revisions
 
2
====================
 
3
 
 
4
Revision identifiers and ranges
 
5
-------------------------------
 
6
 
 
7
Bazaar has a very expressive way to specify a revision or a range of revisions.
 
8
To specify a range of revisions, the upper and lower bounds are separated by the
 
9
``..`` symbol. For example::
8
10
 
9
11
    $ bzr log -r 1..4
10
12
 
13
15
    $ bzr log -r 1..
14
16
    $ bzr log -r ..4
15
17
 
16
 
Note::
17
 
    Omitting the lower bound doesn't work on currently released versions.
18
 
 
19
 
Other commands, like **bzr cat** take only one revision, not a range, like::
 
18
Some commands take only one revision, not a range. For example::
20
19
 
21
20
    $ bzr cat -r 42 foo.c
22
21
 
23
 
Available revision specs
24
 
========================
25
 
 
26
 
The revision, or the bounds of the range, can be one of
 
22
In other cases, a range is required but you want the length of the range to
 
23
be one. For commands where this is relevant, the ``-c`` option is used like this::
 
24
 
 
25
    $ bzr diff -c 42
 
26
 
 
27
 
 
28
Available revision identifiers
 
29
------------------------------
 
30
 
 
31
The revision, or the bounds of the range, can be given using
 
32
different format specifications as shown below.
27
33
 
28
34
 +----------------------+------------------------------------+
29
35
 |  argument type       | description                        |
30
36
 +----------------------+------------------------------------+
31
37
 | *number*             | revision number                    |
32
38
 +----------------------+------------------------------------+
33
 
 | **revno**:*number*   | positive revision number           |
 
39
 | **revno**:*number*   | revision number                    |
34
40
 +----------------------+------------------------------------+
35
41
 | **last**:*number*    | negative revision number           |
36
42
 +----------------------+------------------------------------+
 
43
 | *guid*               | globally unique revision id        |
 
44
 +----------------------+------------------------------------+
37
45
 | **revid**:*guid*     | globally unique revision id        |
38
46
 +----------------------+------------------------------------+
39
47
 | **before**:*rev*     | leftmost parent of ''rev''         |
40
48
 +----------------------+------------------------------------+
41
 
 | **date**:*value*     | first entry after a given date     |
 
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      |
42
56
 +----------------------+------------------------------------+
43
57
 | **ancestor**:*path*  | last merged revision from a branch |
44
58
 +----------------------+------------------------------------+
45
59
 | **branch**:*path*    | latest revision on another branch  |
46
60
 +----------------------+------------------------------------+
 
61
 | **submit**:*path*    | common ancestor with submit branch |
 
62
 +----------------------+------------------------------------+
 
63
 
 
64
A brief introduction to some of these formats is given below.
 
65
For complete details, see `Revision Identifiers`_ in the
 
66
Bazaar User Reference.
 
67
 
 
68
.. _Revision Identifiers: ../user-reference/index.html#revision-identifiers
47
69
 
48
70
Numbers
49
 
-------
 
71
~~~~~~~
50
72
 
51
73
Positive numbers denote revision numbers in the current branch. Revision
52
 
numbers are labelled as "revno" in the output of **bzr log**.  To display
 
74
numbers are labelled as "revno" in the output of ``bzr log``.  To display
53
75
the log for the first ten revisions::
54
76
 
55
77
    $ bzr log -r ..10
61
83
 
62
84
    $ bzr log -r -10..
63
85
 
64
 
revno, last
65
 
-----------
66
 
 
67
 
**revno**:*number*
68
 
    The same as *number*, except that negative numbers are not allowed.
69
 
 
70
 
**last**:*number*
71
 
    The same as -''number''. **last:1** means the last commited revision.
72
 
 
73
86
revid
74
 
-----
 
87
~~~~~
75
88
 
76
 
**revid** allows specifying a an internal revision ID, as show by **bzr
77
 
testament** and some other commands.
 
89
**revid** allows specifying an internal revision ID, as shown by ``bzr
 
90
log --show-ids`` and some other commands.
78
91
 
79
92
For example::
80
93
 
81
94
    $ bzr log -r revid:Matthieu.Moy@imag.fr-20051026185030-93c7cad63ee570df
82
95
 
83
 
 
84
96
before
85
 
------
 
97
~~~~~~
86
98
 
87
99
**before**
88
100
    ''rev'' specifies the leftmost parent of ''rev'', that is the revision
89
101
    that appears before ''rev'' in the revision history, or the revision that
90
 
    was current when ''rev'' what comitted.
 
102
    was current when ''rev'' was committed.
91
103
 
92
 
''rev'' can be any revision specifier.
 
104
''rev'' can be any revision specifier and may be chained.
93
105
 
94
106
For example::
95
107
 
99
111
    ...
100
112
 
101
113
date
102
 
----
 
114
~~~~
103
115
 
104
116
**date**
105
117
    ''value'' matches the first history entry after a given date, either at
119
131
    $ bzr log -r date:yesterday..date:today
120
132
 
121
133
Ancestor
122
 
--------
 
134
~~~~~~~~
123
135
 
124
136
**ancestor**:*path*
125
 
    specifies the common ancestor between the current branch,and a 
 
137
    specifies the common ancestor between the current branch and a
126
138
    different branch. This is the same ancestor that would be used for
127
139
    merging purposes.
128
140
 
129
141
*path* may be the URL of a remote branch, or the file path to a local branch.
130
142
 
131
143
For example, to see what changes were made on a branch since it was forked
132
 
off **../parent**::
 
144
off ``../parent``::
133
145
 
134
146
    $ bzr diff -r ancestor:../parent
135
147
 
136
148
Branch
137
 
------
 
149
~~~~~~
138
150
 
139
151
branch
140
 
   ''path'' specifies the latest revision in another branch.
 
152
   ``path`` specifies the latest revision in another branch.
141
153
 
142
 
''path'' may be the URL of a remote branch, or the file path to a local branch.
 
154
``path`` may be the URL of a remote branch, or the file path to a local branch.
143
155
 
144
156
For example, to get the differences between this and another branch::
145
157