From: Rafael Garcia-Suarez <rgarciasuarez@gmail.com>
To: git@vger.kernel.org
Cc: Rafael Garcia-Suarez <rgarciasuarez@gmail.com>
Subject: [PATCH] Avoid git-rev-parse warnings in gitweb blame
Date: Tue, 3 Jun 2008 12:14:19 +0200 [thread overview]
Message-ID: <1212488060-23251-1-git-send-email-rgarciasuarez@gmail.com> (raw)
Adding a '--' to the command-line avoids git-rev-parse emitting an error
message "ambiguous argument... Use '--' to separate paths from revisions".
Signed-off-by: Rafael Garcia-Suarez <rgarciasuarez@gmail.com>
---
gitweb/gitweb.perl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 55fb100..472326f 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -4226,7 +4226,7 @@ HTML
esc_html($rev));
print "</td>\n";
}
- open (my $dd, "-|", git_cmd(), "rev-parse", "$full_rev^")
+ open (my $dd, "-|", git_cmd(), "rev-parse", '--', "$full_rev^")
or die_error(undef, "Open git-rev-parse failed");
my $parent_commit = <$dd>;
close $dd;
--
1.5.6.rc1
next reply other threads:[~2008-06-03 10:15 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-06-03 10:14 Rafael Garcia-Suarez [this message]
2008-06-03 10:14 ` [PATCH] Make cell alignment more robust in gitweb blame Rafael Garcia-Suarez
2008-06-03 10:26 ` [PATCH] Avoid git-rev-parse warnings " Rafael Garcia-Suarez
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=1212488060-23251-1-git-send-email-rgarciasuarez@gmail.com \
--to=rgarciasuarez@gmail.com \
--cc=git@vger.kernel.org \
/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).