Subject: [PATCH] format-patch: output filename reported to stdout verbatim.
Prepending asterisk to the output was just adding noise, and
forcing scripts like git-send-mail proposed by Andreas Ericsson
do unnecessary work.
Signed-off-by: Junio C Hamano <redacted>
---
Andreas Ericsson [off-list ref] writes:
> Junio C Hamano wrote:
>
>> ... If the standard output from format-patch is useful like
>> this, I would like to drop the '* ' prefix from it, so that you
>> do not have to sed it out.
>
> I'll do that then. It doesn't really add any value anyways.
Agreed, so I'll push this out in the next batch.
git-format-patch.sh | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
applies-to: 9ccf8849fa9b522a344645c2f28f12ab036e30d5
51b3c00e9d95371a9ad202204f01c5981f241b20
diff --git a/git-format-patch.sh b/git-format-patch.sh
index bc56876..9b40880 100755
--- a/git-format-patch.sh
+++ b/git-format-patch.sh
@@ -268,7 +268,7 @@ do
file=`printf '%04d-%stxt' $i "$title"`
if test '' = "$stdout"
then
- echo "* $file"
+ echo "$file"
process_one >"$outdir$file"
if test t = "$check"
then@@ -279,7 +279,7 @@ do
:
fi
else
- echo >&2 "* $file"
+ echo >&2 "$file"
process_one
fi
i=`expr "$i" + 1`---
@@GIT_VERSION@@