aboutsummaryrefslogtreecommitdiff
path: root/git-format-patch.sh
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-10-04 00:40:59 -0700
committerJunio C Hamano <junkio@cox.net>2005-10-04 00:40:59 -0700
commitb10c1a74f0edb7664f127a4f7308fb287beb5f01 (patch)
tree1c99b28fb42cbe72701b88cfd95b6d7ff298b639 /git-format-patch.sh
parentf6413391b1f193cda54c0e4725ac28c9c4883ccc (diff)
downloadgit-b10c1a74f0edb7664f127a4f7308fb287beb5f01.tar.gz
git-b10c1a74f0edb7664f127a4f7308fb287beb5f01.tar.xz
Remove useless use of sed in git-format-patch.
There was a leftover use of sed that attempted to remove the commit ID output from git-diff-tree, which turned into an expensive no-op when git-diff-tree output header format changed about three months ago. Drop it. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-format-patch.sh')
-rwxr-xr-xgit-format-patch.sh6
1 files changed, 1 insertions, 5 deletions
diff --git a/git-format-patch.sh b/git-format-patch.sh
index 525a2f221..284479953 100755
--- a/git-format-patch.sh
+++ b/git-format-patch.sh
@@ -128,10 +128,6 @@ whosepatchScript='
q
}'
-_x40='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
-_x40="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40"
-stripCommitHead='/^'"$_x40"' (from '"$_x40"')$/d'
-
git-cherry -v "$rev1" "$rev2" |
while read sign rev comment
do
@@ -216,7 +212,7 @@ Date: '"$ad"
echo
git-diff-tree -p $diff_opts "$commit" | git-apply --stat --summary
echo
- git-diff-tree -p $diff_opts "$commit" | sed -e "$stripCommitHead"
+ git-diff-tree -p $diff_opts "$commit"
case "$mbox" in
t)