git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] git-rev-list --help anywhere
@ 2006-02-19 11:09 Alex Riesen
  0 siblings, 0 replies; 7+ messages in thread
From: Alex Riesen @ 2006-02-19 11:09 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Petr Baudis, git

Junio C Hamano, Sat, Feb 18, 2006 19:55:02 +0100:
> Petr Baudis <pasky@suse.cz> writes:
> 
> > 	$ git-rev-list --help
> > 	fatal: Not a git repository
> 
> Hmph, true.  Ideas?
> 

Signed-off-by: Alex Riesen <raa.lkml@gmail.com>

---

 rev-list.c |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

0855207c43a83007e4c060a03c39269f379fed41
diff --git a/rev-list.c b/rev-list.c
index f2d1105..a059e45 100644
--- a/rev-list.c
+++ b/rev-list.c
@@ -755,10 +755,16 @@ static void handle_all(struct commit_lis
 
 int main(int argc, const char **argv)
 {
-	const char *prefix = setup_git_directory();
+	const char *prefix;
 	struct commit_list *list = NULL;
 	int i, limited = 0;
 
+	for (i = 1 ; i < argc; i++)
+	    if ( !strcmp(argv[i], "--help") )
+		usage(rev_list_usage);
+
+	prefix = setup_git_directory();
+
 	for (i = 1 ; i < argc; i++) {
 		int flags;
 		const char *arg = argv[i];
-- 
1.2.1.g59a08

^ permalink raw reply related	[flat|nested] 7+ messages in thread
* Re: [PATCH] git-rev-list --help anywhere
@ 2006-02-19 11:26 linux
  2006-02-19 18:39 ` Alex Riesen
  0 siblings, 1 reply; 7+ messages in thread
From: linux @ 2006-02-19 11:26 UTC (permalink / raw)
  To: raa.lkml; +Cc: git

>+	for (i = 1 ; i < argc; i++)
>+	    if ( !strcmp(argv[i], "--help") )
>+		usage(rev_list_usage);

You might want to try something more like:

+	for (i = 1 ; i < argc; i++) {
+	    if ( !strcmp(argv[i], "--help") )
+		usage(rev_list_usage);
+	    if ( !strcmp(argv[i], "--") )
+		break;
+	}

So that you don't break in the perverse but legal case of
having a file named "--help".

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

end of thread, other threads:[~2006-02-20  5:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-02-19 11:09 [PATCH] git-rev-list --help anywhere Alex Riesen
  -- strict thread matches above, loose matches on Subject: below --
2006-02-19 11:26 linux
2006-02-19 18:39 ` Alex Riesen
2006-02-19 19:25   ` Johannes Schindelin
2006-02-19 19:39     ` linux
2006-02-19 19:40     ` A Large Angry SCM
2006-02-20  5:52     ` Junio C Hamano

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).