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 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Sun Feb 19 22:10:13 2006
This archive was generated by hypermail 2.1.8 : 2006-02-19 22:10:24 EST