Code

Fix usage string of git-diff-cache and add documentation of -m flag.
authorJunio C Hamano <junkio@cox.net>
Sat, 7 May 2005 08:11:00 +0000 (01:11 -0700)
committerJunio C Hamano <junkio@cox.net>
Sat, 7 May 2005 08:11:00 +0000 (01:11 -0700)
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/core-git.txt
diff-cache.c

index 8bd893197e6e769b6e03ca1206e355214e16d56a..014b97964e32e5cd7561aeed453b59ca78f8349a 100644 (file)
@@ -241,7 +241,7 @@ Converts old-style GIT repository to the latest.
 
 ################################################################
 git-diff-cache
-       git-diff-cache [-p] [-r] [-z] [--cached] <tree-ish>
+       git-diff-cache [-p] [-r] [-z] [-m] [--cached] <tree-ish>
 
 Compares the content and mode of the blobs found via a tree object
 with the content of the current cache and, optionally ignoring the
@@ -264,6 +264,13 @@ stat state of the file on disk.
 --cached
        do not consider the on-disk file at all
 
+-m
+
+       By default, files recorded in the index but not checked
+       out are reported as deleted.  This flag makes
+       git-diff-cache say that all non-checked-out files are up
+       to date.
+
 Output format:
 
 See "Output format from git-diff-cache, git-diff-tree and git-diff-files"
index 7e87d28f3a358710b9f11a4b76e4235926f438ee..84527190fef259dc8e8865693fe5591be86f79c4 100644 (file)
@@ -165,7 +165,7 @@ static void mark_merge_entries(void)
 }
 
 static char *diff_cache_usage =
-"diff-cache [-r] [-z] [-p] [-i] [--cached] <tree sha1>";
+"git-diff-cache [-p] [-r] [-z] [-m] [--cached] <tree sha1>";
 
 int main(int argc, char **argv)
 {