X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=Documentation%2Fgit-rev-list.txt;h=4f145eaba47175e48dd592ffe5018be5cb4cb375;hb=9cec65399d3575774910b21c1cfd762a5e88a245;hp=86c94e7dfd257f5a7eff5c9d5aa4540a41128864;hpb=76d4e079adba461c127641a1104772a62e38cd81;p=git.git diff --git a/Documentation/git-rev-list.txt b/Documentation/git-rev-list.txt index 86c94e7df..4f145eaba 100644 --- a/Documentation/git-rev-list.txt +++ b/Documentation/git-rev-list.txt @@ -27,6 +27,8 @@ SYNOPSIS [ \--pretty | \--header ] [ \--bisect ] [ \--merge ] + [ \--reverse ] + [ \--walk-reflogs ] ... [ \-- ... ] DESCRIPTION @@ -190,6 +192,22 @@ limiting may be applied. In addition to the '' listed on the command line, read them from the standard input. +-g, --walk-reflogs:: + + Instead of walking the commit ancestry chain, walk + reflog entries from the most recent one to older ones. + When this option is used you cannot specify commits to + exclude (that is, '{caret}commit', 'commit1..commit2', + nor 'commit1...commit2' notations cannot be used). ++ +With '\--pretty' format other than oneline (for obvious reasons), +this causes the output to have two extra lines of information +taken from the reflog. By default, 'commit@{Nth}' notation is +used in the output. When the starting commit is specified as +'commit@{now}', output also uses 'commit@{timestamp}' notation +instead. Under '\--pretty=oneline', the commit message is +prefixed with this information on the same line. + --merge:: After a failed merge, show refs that touch files having a @@ -249,6 +267,10 @@ By default, the commits are shown in reverse chronological order. parent comes before all of its children, but otherwise things are still ordered in the commit timestamp order. +--reverse:: + + Output the commits in reverse order. + Object Traversal ~~~~~~~~~~~~~~~~