diff options
author | Jeff King <peff@peff.net> | 2007-11-15 02:04:30 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-15 22:24:10 -0800 |
commit | 8e7b07c8a776c401ff5c4adb593f423a754d198c (patch) | |
tree | 8fd450fff043c5c7521bd2b547d2cb6efb6f31c8 /Documentation/git-ls-files.txt | |
parent | a777e9ca54b5801266486a16dc0d25c82b38014d (diff) | |
download | git-8e7b07c8a776c401ff5c4adb593f423a754d198c.tar.gz |
git-ls-files: add --exclude-standard
This provides a way for scripts to get at the new standard exclude
function.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-ls-files.txt')
-rw-r--r-- | Documentation/git-ls-files.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/git-ls-files.txt b/Documentation/git-ls-files.txt index 9e454f0a4d..2ec0c0d270 100644 --- a/Documentation/git-ls-files.txt +++ b/Documentation/git-ls-files.txt @@ -15,6 +15,7 @@ SYNOPSIS [-x <pattern>|--exclude=<pattern>] [-X <file>|--exclude-from=<file>] [--exclude-per-directory=<file>] + [--exclude-standard] [--error-unmatch] [--with-tree=<tree-ish>] [--full-name] [--abbrev] [--] [<file>]\* @@ -77,6 +78,10 @@ OPTIONS read additional exclude patterns that apply only to the directory and its subdirectories in <file>. +--exclude-standard:: + Add the standard git exclusions: .git/info/exclude, .gitignore + in each directory, and the user's global exclusion file. + --error-unmatch:: If any <file> does not appear in the index, treat this as an error (return 1). |