Code

Document --strict flag to the fsck-cache command.
authorJunio C Hamano <junkio@cox.net>
Thu, 28 Jul 2005 01:55:18 +0000 (18:55 -0700)
committerJunio C Hamano <junkio@cox.net>
Thu, 28 Jul 2005 01:57:14 +0000 (18:57 -0700)
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/git-fsck-cache.txt
fsck-cache.c

index f1c18c10d82c63cab74779a4feacd2cde8671767..aaec2de0356400a7d35c5414726a72d46f8876dd 100644 (file)
@@ -9,7 +9,7 @@ git-fsck-cache - Verifies the connectivity and validity of the objects in the da
 
 SYNOPSIS
 --------
-'git-fsck-cache' [--tags] [--root] [--unreachable] [--cache] [--standalone | --full] [<object>*]
+'git-fsck-cache' [--tags] [--root] [--unreachable] [--cache] [--standalone | --full] [--strict] [<object>*]
 
 DESCRIPTION
 -----------
@@ -53,6 +53,14 @@ OPTIONS
        and corresponding pack subdirectories in alternate
        object pools; cannot be used with --standalone.
 
+--strict::
+       Enable more strict checking, namely to catch a file mode
+       recorded with g+w bit set, which was created by older
+       versions of GIT.  Existing repositories, including the
+       Linux kernel, GIT itself, and sparse repository have old
+       objects that triggers this check, but it is recommended
+       to check new projects with this flag.
+
 It tests SHA1 and general object sanity, and it does full tracking of
 the resulting reachability and everything else. It prints out any
 corruption it finds (missing or bad objects), and if you use the
index 6115514d4f0974d70abbe84aa35d001ec3316a82..e40c64332f2ca8b01b12d1b3f050165f61836b3b 100644 (file)
@@ -445,7 +445,7 @@ int main(int argc, char **argv)
                        continue;
                }
                if (*arg == '-')
-                       usage("git-fsck-cache [--tags] [[--unreachable] [--cache] [--standalone | --full] <head-sha1>*]");
+                       usage("git-fsck-cache [--tags] [--root] [[--unreachable] [--cache] [--standalone | --full] [--strict] <head-sha1>*]");
        }
 
        if (standalone && check_full)