git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] git-diff-cache: handle pathspec beginning with a dash
@ 2005-06-06 21:27 Jonas Fonseca
  2005-06-06 21:32 ` [PATCH] cg-commit: prefix pathspec argument with -- Jonas Fonseca
  2005-06-08 18:47 ` [PATCH] git-diff-cache: handle pathspec beginning with a dash Petr Baudis
  0 siblings, 2 replies; 6+ messages in thread
From: Jonas Fonseca @ 2005-06-06 21:27 UTC (permalink / raw)
  To: git

Parse everything after '--' as tree name or pathspec.

Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
---

 diff-cache.c |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/diff-cache.c b/diff-cache.c
--- a/diff-cache.c
+++ b/diff-cache.c
@@ -167,13 +167,14 @@ int main(int argc, const char **argv)
 	void *tree;
 	unsigned long size;
 	int ret;
+	int allow_options = 1;
 	int i;
 
 	read_cache();
 	for (i = 1; i < argc; i++) {
 		const char *arg = argv[i];
 
-		if (*arg != '-') {
+		if (!allow_options || *arg != '-') {
 			if (tree_name) {
 				pathspec = argv + i;
 				break;
@@ -182,6 +183,10 @@ int main(int argc, const char **argv)
 			continue;
 		}
 			
+		if (!strcmp(arg, "--")) {
+			allow_options = 0;
+			continue;
+		}
 		if (!strcmp(arg, "-r")) {
 			/* We accept the -r flag just to look like git-diff-tree */
 			continue;
-- 
Jonas Fonseca

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2005-06-08 20:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-06 21:27 [PATCH] git-diff-cache: handle pathspec beginning with a dash Jonas Fonseca
2005-06-06 21:32 ` [PATCH] cg-commit: prefix pathspec argument with -- Jonas Fonseca
2005-06-08 18:47 ` [PATCH] git-diff-cache: handle pathspec beginning with a dash Petr Baudis
2005-06-08 20:00   ` Linus Torvalds
2005-06-08 20:06     ` Petr Baudis
2005-06-08 20:13       ` Linus Torvalds

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).