Skip to content

Commit

Permalink
format-patch: do not abuse 3-dash marker line.
Browse files Browse the repository at this point in the history
Before GIT version at the end of output we used a 3-dash marker;
but 3-dash marker is special and should not be overused.
Instead, use "-- " which is a standard practice in e-mails to
signal the beginning of trailing garbage.

Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Junio C Hamano committed Nov 29, 2005
1 parent 99e368b commit a004d3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-format-patch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ Date: '"$ad"
git-diff-tree -p $diff_opts "$commit" | git-apply --stat --summary
echo
git-diff-tree -p $diff_opts "$commit"
echo "---"
echo "-- "
echo "@@GIT_VERSION@@"

case "$mbox" in
Expand Down

0 comments on commit a004d3f

Please sign in to comment.