Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
hooks/post-receive-email: use plumbing instead of git log/show
author
Jonathan Nieder
<jrnieder@gmail.com>
Fri, 2 Aug 2013 23:22:08 +0000
(16:22 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 5 Aug 2013 17:17:35 +0000
(10:17 -0700)
This way the hook doesn't have to keep being tweaked as porcelain
learns new features like color and pagination.
While at it, replace the "git rev-list | git shortlog" idiom with
plain "git shortlog" for simplicity.
Except for depending less on the value of settings like '[log]
abbrevCommit', no change in output intended.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
contrib/hooks/post-receive-email
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
d6cbf2f
)
diff --git
a/contrib/hooks/post-receive-email
b/contrib/hooks/post-receive-email
index 153115029df0764a3f42812a9a2bd8992360c4bd..72084511e7a720448f16f94dad26ce3e7b0c9196 100755
(executable)
--- a/
contrib/hooks/post-receive-email
+++ b/
contrib/hooks/post-receive-email
@@
-471,7
+471,7
@@
generate_delete_branch_email()
echo " was $oldrev"
echo ""
echo $LOGBEGIN
echo " was $oldrev"
echo ""
echo $LOGBEGIN
- git
show -
s --pretty=oneline $oldrev
+ git
diff-tree -s --alway
s --pretty=oneline $oldrev
echo $LOGEND
}
echo $LOGEND
}
@@
-547,11
+547,11
@@
generate_atag_email()
# performed on them
if [ -n "$prevtag" ]; then
# Show changes since the previous release
# performed on them
if [ -n "$prevtag" ]; then
# Show changes since the previous release
- git
rev-list --pretty=short "$prevtag..$newrev" | git shortlog
+ git
shortlog "$prevtag..$newrev"
else
# No previous tag, show all the changes since time
# began
else
# No previous tag, show all the changes since time
# began
- git
rev-list --pretty=short $newrev | git shortlog
+ git
shortlog $newrev
fi
;;
*)
fi
;;
*)
@@
-571,7
+571,7
@@
generate_delete_atag_email()
echo " was $oldrev"
echo ""
echo $LOGBEGIN
echo " was $oldrev"
echo ""
echo $LOGBEGIN
- git
show -
s --pretty=oneline $oldrev
+ git
diff-tree -s --alway
s --pretty=oneline $oldrev
echo $LOGEND
}
echo $LOGEND
}
@@
-617,7
+617,7
@@
generate_general_email()
echo ""
if [ "$newrev_type" = "commit" ]; then
echo $LOGBEGIN
echo ""
if [ "$newrev_type" = "commit" ]; then
echo $LOGBEGIN
- git
show --no-color --root -
s --pretty=medium $newrev
+ git
diff-tree -s --alway
s --pretty=medium $newrev
echo $LOGEND
else
# What can we do here? The tag marks an object that is not
echo $LOGEND
else
# What can we do here? The tag marks an object that is not
@@
-636,7
+636,7
@@
generate_delete_general_email()
echo " was $oldrev"
echo ""
echo $LOGBEGIN
echo " was $oldrev"
echo ""
echo $LOGBEGIN
- git
show -
s --pretty=oneline $oldrev
+ git
diff-tree -s --alway
s --pretty=oneline $oldrev
echo $LOGEND
}
echo $LOGEND
}