Git development
 help / color / mirror / Atom feed
* [PATCH 1/3] tag: Do not allow to call "git tag" in more than one operating mode
@ 2008-11-04 12:42 Samuel Tardieu
  2008-11-04 12:42 ` [PATCH 2/3] tag: Check that options are only allowed in the appropriate mode Samuel Tardieu
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Samuel Tardieu @ 2008-11-04 12:42 UTC (permalink / raw)
  To: git

If "git tag -d -l -v ..." is called, only "-l" is honored, which is
arbitrary and wrong.

This patch checks that "git tag" knows in what mode it operates before
performing any operation.

Signed-Off-By: Samuel Tardieu <sam@rfc1149.net>
---
 builtin-tag.c |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/builtin-tag.c b/builtin-tag.c
index 84db156..5ce0e21 100644
--- a/builtin-tag.c
+++ b/builtin-tag.c
@@ -380,7 +380,11 @@ int cmd_tag(int argc, const char **argv, const char *prefix)
 	}
 	if (sign)
 		annotate = 1;
+	if (argc == 0 && !(delete || verify))
+		list = 1;
 
+	if (list + delete + verify > 1)
+		usage_with_options(git_tag_usage, options);
 	if (list)
 		return list_tags(argv[0], lines);
 	if (delete)
@@ -406,11 +410,6 @@ int cmd_tag(int argc, const char **argv, const char *prefix)
 		}
 	}
 
-	if (argc == 0) {
-		if (annotate)
-			usage_with_options(git_tag_usage, options);
-		return list_tags(NULL, lines);
-	}
 	tag = argv[0];
 
 	object_ref = argc == 2 ? argv[1] : "HEAD";

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

end of thread, other threads:[~2008-11-04 23:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-04 12:42 [PATCH 1/3] tag: Do not allow to call "git tag" in more than one operating mode Samuel Tardieu
2008-11-04 12:42 ` [PATCH 2/3] tag: Check that options are only allowed in the appropriate mode Samuel Tardieu
2008-11-04 12:42 ` [PATCH 3/3] tag: Add more tests about mixing incompatible modes and options Samuel Tardieu
2008-11-04 22:47 ` [PATCH 1/3] tag: Do not allow to call "git tag" in more than one operating mode Junio C Hamano
2008-11-04 23:11   ` Samuel Tardieu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox