comparison man/files.texi @ 67652:c9928598ea58

(VC Status): Document log-view mode.
author Richard M. Stallman <rms@gnu.org>
date Mon, 19 Dec 2005 02:56:24 +0000
parents 3251bdbd90a9
children 05e4a3f8ac73
comparison
equal deleted inserted replaced
67651:915b73d58795 67652:c9928598ea58
1786 @kindex C-x v l 1786 @kindex C-x v l
1787 @findex vc-print-log 1787 @findex vc-print-log
1788 To view the detailed version control status and history of a file, 1788 To view the detailed version control status and history of a file,
1789 type @kbd{C-x v l} (@code{vc-print-log}). It displays the history of 1789 type @kbd{C-x v l} (@code{vc-print-log}). It displays the history of
1790 changes to the current file, including the text of the log entries. The 1790 changes to the current file, including the text of the log entries. The
1791 output appears in a separate window. 1791 output appears in a separate window. The point is centered at the
1792 revision of the file that is currently being visited.
1793
1794 From the change log buffer, the following keys are used to move
1795 between the logs of files and revisions, to view past revisions, and
1796 to view diffs:
1797
1798 @table @kbd
1799 @item p
1800 Move to the previous revision-item in the buffer. (Revision entries in the log
1801 buffer are usually in reverse-chronological order, so the previous
1802 revision-item usually corresponds to a newer revision.) A numeric
1803 prefix argument is a repeat count.
1804
1805 @item n
1806 Move to the next revision-item (which most often corresponds to the
1807 previous revision of the file). A numeric prefix argument is a repeat
1808 count.
1809
1810 @item f
1811 Visit the revision indicated at the current line, like typing @kbd{C-x
1812 v ~} and specifying this revision's number (@pxref{Old Versions}).
1813
1814 @item d
1815 Display the diff (@pxref{Comparing Files}) between the revision
1816 indicated at the current line and the next earlier revision. This is
1817 useful to see what actually changed when the revision indicated on the
1818 current line was committed.
1819
1820 @item P
1821 Move to the log of the previous file, when the logs of multiple files
1822 are in the log buffer (@pxref{VC Dired Mode}). Otherwise, just move
1823 to the beginning of the log. A numeric prefix argument is a repeat
1824 count, so @kbd{C-u 10 P} would move backward 10 files.
1825
1826 @item N
1827 Move to the log of the next file, when the logs of multiple files are
1828 in the log buffer (@pxref{VC Dired Mode}). It also takes a numeric
1829 prefix argument as a repeat count.
1830 @end table
1792 1831
1793 @node VC Undo 1832 @node VC Undo
1794 @subsubsection Undoing Version Control Actions 1833 @subsubsection Undoing Version Control Actions
1795 1834
1796 @table @kbd 1835 @table @kbd