summaryrefslogtreecommitdiff
path: root/diff-files.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@osdl.org>2005-10-18 07:16:45 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-10-18 07:16:45 (GMT)
commitea51d416c02bb26e9d7600f87b27deb42752e6b5 (patch)
tree2f2247d6468dbc88e7ac5c691a6ca5347b68ff36 /diff-files.c
parent7a3dd472ad2c69b7450a59eb2a35efb0698993d0 (diff)
downloadgit-ea51d416c02bb26e9d7600f87b27deb42752e6b5.zip
git-ea51d416c02bb26e9d7600f87b27deb42752e6b5.tar.gz
git-ea51d416c02bb26e9d7600f87b27deb42752e6b5.tar.bz2
Teach "git diff" to handle filenames starting with '-'
It adds "--" to the git-diff.sh scripts, to keep any filenames that start with a "-" from being confused with an option. But in order to do that, it needs to teach git-diff-files to honor "--". Signed-off-by: Linus Torvalds <torvalds@osdl.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diff-files.c')
-rw-r--r--diff-files.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/diff-files.c b/diff-files.c
index 8a8f9b6..1789939 100644
--- a/diff-files.c
+++ b/diff-files.c
@@ -41,6 +41,11 @@ int main(int argc, const char **argv)
git_config(git_default_config);
diff_setup(&diff_options);
while (1 < argc && argv[1][0] == '-') {
+ if (!strcmp(argv[1], "--")) {
+ argv++;
+ argc--;
+ break;
+ }
if (!strcmp(argv[1], "-q"))
silent = 1;
else if (!strcmp(argv[1], "-r"))