diff options
author | Michael J Gruber <git@drmicha.warpmail.net> | 2010-09-30 17:31:43 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-30 09:38:47 -0700 |
commit | e14712c9e6801855a033ee1e7013f54580f270a1 (patch) | |
tree | 3476c0529b5be5dd171458138b89b49be094f6e6 /Documentation/rev-list-options.txt | |
parent | 2f76919517e98bb5e979d6c8c7bbc3478a066a21 (diff) | |
download | git-e14712c9e6801855a033ee1e7013f54580f270a1.tar.gz git-e14712c9e6801855a033ee1e7013f54580f270a1.tar.xz |
rev-list-options: clarify --parents and --children
Make it clearer that --parents resp. --children list the parent resp.
child commits next to each commit, so that I understand next time.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/rev-list-options.txt')
-rw-r--r-- | Documentation/rev-list-options.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/rev-list-options.txt b/Documentation/rev-list-options.txt index e2237ae4a..ebc010873 100644 --- a/Documentation/rev-list-options.txt +++ b/Documentation/rev-list-options.txt @@ -45,13 +45,13 @@ endif::git-rev-list[] --parents:: - Print the parents of the commit. Also enables parent - rewriting, see 'History Simplification' below. + Print also the parents of the commit (in the form "commit parent..."). + Also enables parent rewriting, see 'History Simplification' below. --children:: - Print the children of the commit. Also enables parent - rewriting, see 'History Simplification' below. + Print also the children of the commit (in the form "commit child..."). + Also enables parent rewriting, see 'History Simplification' below. ifdef::git-rev-list[] --timestamp:: |