diff options
author | Fredrik Kuivinen <freku045@student.liu.se> | 2005-10-02 17:33:38 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-02 10:31:18 -0700 |
commit | 500b97e4bb184c954a52550843e6314ecf97a208 (patch) | |
tree | 5fbfe0441a8cea62a04ceee4f28cd517c62f386a /Documentation/git-ls-files.txt | |
parent | [PATCH] Teach the recursive merge strategy about renames. (diff) | |
download | tgif-500b97e4bb184c954a52550843e6314ecf97a208.tar.xz |
[PATCH] Teach git-ls-files about '--' to denote end of options.
Useful if you have a file whose name starts with a dash.
Signed-off-by: Fredrik Kuivinen <freku045@student.liu.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-ls-files.txt')
-rw-r--r-- | Documentation/git-ls-files.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Documentation/git-ls-files.txt b/Documentation/git-ls-files.txt index 591f4ed462..87cc362ad8 100644 --- a/Documentation/git-ls-files.txt +++ b/Documentation/git-ls-files.txt @@ -13,7 +13,7 @@ SYNOPSIS (-[c|d|o|i|s|u|k|m])\* [-x <pattern>|--exclude=<pattern>] [-X <file>|--exclude-from=<file>] - [--exclude-per-directory=<file>] + [--exclude-per-directory=<file>] [--] [<file>]\* DESCRIPTION ----------- @@ -77,6 +77,13 @@ OPTIONS K to be killed ? other +--:: + Do not interpret any more arguments as options. + +<file>:: + Files to show. If no files are given all files which match the other + specified criteria are shown. + Output ------ show files just outputs the filename unless '--stage' is specified in |