rev-list --remove-empty: add minimum help and doc entry.

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2006-01-27 01:39:24 -08:00
Родитель 461cf59f89
Коммит 93b74bca86
2 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -14,6 +14,7 @@ SYNOPSIS
[ \--min-age=timestamp ] [ \--min-age=timestamp ]
[ \--sparse ] [ \--sparse ]
[ \--no-merges ] [ \--no-merges ]
[ \--remove-empty ]
[ \--all ] [ \--all ]
[ [ \--merge-order [ \--show-breaks ] ] | [ \--topo-order ] ] [ [ \--merge-order [ \--show-breaks ] ] | [ \--topo-order ] ]
[ \--parents ] [ \--parents ]
@ -80,6 +81,9 @@ OPTIONS
(still subject to count and age limitation), but apply (still subject to count and age limitation), but apply
merge simplification nevertheless. merge simplification nevertheless.
--remove-empty::
Stop when a given path disappears from the tree.
--all:: --all::
Pretend as if all the refs in `$GIT_DIR/refs/` are Pretend as if all the refs in `$GIT_DIR/refs/` are
listed on the command line as <commit>. listed on the command line as <commit>.

Просмотреть файл

@ -21,6 +21,7 @@ static const char rev_list_usage[] =
" --min-age=epoch\n" " --min-age=epoch\n"
" --sparse\n" " --sparse\n"
" --no-merges\n" " --no-merges\n"
" --remove-empty\n"
" --all\n" " --all\n"
" ordering output:\n" " ordering output:\n"
" --merge-order [ --show-breaks ]\n" " --merge-order [ --show-breaks ]\n"