git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ben Jackson <ben@ben.com>
To: git@vger.kernel.org
Cc: gitster@pobox.com, normalperson@yhbt.net, Ben Jackson <ben@ben.com>
Subject: [PATCH 1/2] Add 'git svn help [cmd]' which works outside a repo.
Date: Sat, 30 May 2009 18:17:06 -0700	[thread overview]
Message-ID: <1243732627-82282-1-git-send-email-ben@ben.com> (raw)

Previously there was no explicit 'help' command, but 'git svn help'
still printed the usage message (as an invalid command), provided you
got past the initialization steps that required a valid repo.

Signed-off-by: Ben Jackson <ben@ben.com>
---

This was just a minor nit I noticed while working on the 'git-svn reset'
patch.

 git-svn.perl |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/git-svn.perl b/git-svn.perl
index a70c7d7..20bf828 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -219,6 +219,9 @@ for (my $i = 0; $i < @ARGV; $i++) {
 		$cmd = $ARGV[$i];
 		splice @ARGV, $i, 1;
 		last;
+	} elsif ($ARGV[$i] eq 'help') {
+		$cmd = $ARGV[$i+1];
+		usage(0);
 	}
 };
 
-- 
1.6.3.GIT

             reply	other threads:[~2009-05-31  1:29 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-05-31  1:17 Ben Jackson [this message]
2009-05-31  1:17 ` [PATCH 2/2] Add 'git svn reset' to unwind 'git svn fetch' Ben Jackson
2009-06-01 17:49   ` Ben Jackson
2009-06-04  0:24     ` Eric Wong
2009-06-04  2:48 ` [PATCH 1/2] Add 'git svn help [cmd]' which works outside a repo Eric Wong

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1243732627-82282-1-git-send-email-ben@ben.com \
    --to=ben@ben.com \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    --cc=normalperson@yhbt.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).