From d23ed4f3a45ba6d4fd1addb59dd6fca9360e2aff Mon Sep 17 00:00:00 2001 From: "Jim Cromie (via RT)" Date: Sat, 28 May 2011 18:39:48 -0700 Subject: perlhack.pod: fix perlbug invocation In perlhack, % perlbug -s "[PATCH] $(git log -1 --format=%s HEAD)" -f 0001-*.patch is incomplete; --format=%s needs a proper value. Use --oneline instead, as it also --abbrev(iates) sha1 $ git log --oneline -1 c8dfc96 regexp.h: repair linux perf compilation Note that HEAD is optional, but just as clear as . --- pod/perlhack.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pod/perlhack.pod') diff --git a/pod/perlhack.pod b/pod/perlhack.pod index 5e85f4ba74..f8f8bdd82c 100644 --- a/pod/perlhack.pod +++ b/pod/perlhack.pod @@ -60,7 +60,7 @@ Assuming your patch consists of a single git commit, you can send it to perlbug with this command line: % git format-patch -1 - % perlbug -s "[PATCH] $(git log -1 --format=%s HEAD)" -f 0001-*.patch + % perlbug -s "[PATCH] $(git log -1 --oneline HEAD)" -f 0001-*.patch The perlbug program will ask you a few questions about your email address and the patch you're submitting. Once you've answered them you -- cgit v1.2.1