60
60
content faster than seeking and reading content from another tree,
61
61
especially in cold-cache situations. (John Arbash Meinel, #607298)
63
New revision specifiers
64
***********************
66
* The ``mainline`` revision specifier has been added. It takes another revision
67
spec as its input, and selects the revision which merged that revision into
70
For example, ``bzr log -vp -r mainline:1.2.3`` will show the log of the
71
revision that merged revision 1.2.3 into mainline, along with its status
72
output and diff. (Aaron Bentley)
74
* The ``annotate`` revision specifier has been added. It takes a path and a
75
line as its input (in the form ``path:line``), and selects the revision which
76
introduced that line of that file.
78
For example: ``bzr log -vp -r annotate:bzrlib/transform.py:500`` will select
79
the revision that introduced line 500 of transform.py, and display its log,
80
status output and diff.
82
It can be combined with ``mainline`` to select the revision that landed this
83
line into trunk, like so:
84
``bzr log -vp -r mainline:annotate:bzrlib/transform.py:500``
65
90
* A beta version of the documentation is now available in GNU TexInfo
66
91
format, used by emacs and the standalone ``info`` reader.
67
92
(Vincent Ladeuil, #219334)