diff options
author | Wesley J. Landaker <wjl@icecavern.net> | 2010-02-05 12:58:50 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-02-05 13:01:45 -0800 |
commit | 2b26e0e18907132eaac2a8163de0cac552217082 (patch) | |
tree | 8680e15d616b55242b75561a4c0fccec4a84aad1 | |
parent | b401a12a2c49d3f3e81e356782d9ca49aaa97faa (diff) | |
download | git-2b26e0e18907132eaac2a8163de0cac552217082.tar.gz git-2b26e0e18907132eaac2a8163de0cac552217082.tar.xz |
Update git fsck --full short description to mention packs
The '--full' option to git fsck does two things:
1) Check objects in packs
2) Check alternate objects
This is documented in the git fsck manual; this patch reflects that in
the short git fsck option help message as well.
Signed-off-by: Wesley J. Landaker <wjl@icecavern.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin-fsck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-fsck.c b/builtin-fsck.c index 0e5faae38..0929c7f24 100644 --- a/builtin-fsck.c +++ b/builtin-fsck.c @@ -578,7 +578,7 @@ static struct option fsck_opts[] = { OPT_BOOLEAN(0, "root", &show_root, "report root nodes"), OPT_BOOLEAN(0, "cache", &keep_cache_objects, "make index objects head nodes"), OPT_BOOLEAN(0, "reflogs", &include_reflogs, "make reflogs head nodes (default)"), - OPT_BOOLEAN(0, "full", &check_full, "also consider alternate objects"), + OPT_BOOLEAN(0, "full", &check_full, "also consider packs and alternate objects"), OPT_BOOLEAN(0, "strict", &check_strict, "enable more strict checking"), OPT_BOOLEAN(0, "lost-found", &write_lost_and_found, "write dangling objects in .git/lost-found"), |