1#!/bin/sh 2# 3# Copyright (c) 2007 Andy Parkins 4# 5# An example hook script to mail out commit update information. This hook 6# sends emails listing new revisions to the repository introduced by the 7# change being reported. The rule is that (for branch updates) each commit 8# will appear on one email and one email only. 9# 10# This hook is stored in the contrib/hooks directory. Your distribution 11# will have put this somewhere standard. You should make this script 12# executable then link to it in the repository you would like to use it in. 13# For example, on debian the hook is stored in 14# /usr/share/doc/git-core/contrib/hooks/post-receive-email: 15# 16# chmod a+x post-receive-email 17# cd /path/to/your/repository.git 18# ln -sf /usr/share/doc/git-core/contrib/hooks/post-receive-email hooks/post-receive 19# 20# This hook script assumes it is enabled on the central repository of a 21# project, with all users pushing only to it and not between each other. It 22# will still work if you don't operate in that style, but it would become 23# possible for the email to be from someone other than the person doing the 24# push. 25# 26# Config 27# ------ 28# hooks.mailinglist 29# This is the list that all pushes will go to; leave it blank to not send 30# emails for every ref update. 31# hooks.announcelist 32# This is the list that all pushes of annotated tags will go to. Leave it 33# blank to default to the mailinglist field. The announce emails lists 34# the short log summary of the changes since the last annotated tag. 35# hooks.envelopesender 36# If set then the -f option is passed to sendmail to allow the envelope 37# sender address to be set 38# hooks.emailprefix 39# All emails have their subjects prefixed with this prefix, or "[SCM]" 40# if emailprefix is unset, to aid filtering 41# 42# Notes 43# ----- 44# All emails include the headers "X-Git-Refname", "X-Git-Oldrev", 45# "X-Git-Newrev", and "X-Git-Reftype" to enable fine tuned filtering and 46# give information for debugging. 47# 48 49# ---------------------------- Functions 50 51# 52# Top level email generation function. This decides what type of update 53# this is and calls the appropriate body-generation routine after outputting 54# the common header 55# 56# Note this function doesn't actually generate any email output, that is 57# taken care of by the functions it calls: 58# - generate_email_header 59# - generate_create_XXXX_email 60# - generate_update_XXXX_email 61# - generate_delete_XXXX_email 62# - generate_email_footer 63# 64generate_email() 65{ 66# --- Arguments 67 oldrev=$(git rev-parse $1) 68 newrev=$(git rev-parse $2) 69 refname="$3" 70 71# --- Interpret 72# 0000->1234 (create) 73# 1234->2345 (update) 74# 2345->0000 (delete) 75ifexpr"$oldrev":'0*$'>/dev/null 76then 77 change_type="create" 78else 79ifexpr"$newrev":'0*$'>/dev/null 80then 81 change_type="delete" 82else 83 change_type="update" 84fi 85fi 86 87# --- Get the revision types 88 newrev_type=$(git cat-file -t $newrev 2> /dev/null) 89 oldrev_type=$(git cat-file -t "$oldrev" 2> /dev/null) 90case"$change_type"in 91 create|update) 92rev="$newrev" 93 rev_type="$newrev_type" 94;; 95 delete) 96rev="$oldrev" 97 rev_type="$oldrev_type" 98;; 99esac 100 101# The revision type tells us what type the commit is, combined with 102# the location of the ref we can decide between 103# - working branch 104# - tracking branch 105# - unannoted tag 106# - annotated tag 107case"$refname","$rev_type"in 108 refs/tags/*,commit) 109# un-annotated tag 110 refname_type="tag" 111 short_refname=${refname##refs/tags/} 112;; 113 refs/tags/*,tag) 114# annotated tag 115 refname_type="annotated tag" 116 short_refname=${refname##refs/tags/} 117# change recipients 118if[-n"$announcerecipients"];then 119 recipients="$announcerecipients" 120fi 121;; 122 refs/heads/*,commit) 123# branch 124 refname_type="branch" 125 short_refname=${refname##refs/heads/} 126;; 127 refs/remotes/*,commit) 128# tracking branch 129 refname_type="tracking branch" 130 short_refname=${refname##refs/remotes/} 131echo>&2"*** Push-update of tracking branch,$refname" 132echo>&2"*** - no email generated." 133exit0 134;; 135*) 136# Anything else (is there anything else?) 137echo>&2"*** Unknown type of update to$refname($rev_type)" 138echo>&2"*** - no email generated" 139exit1 140;; 141esac 142 143# Check if we've got anyone to send to 144if[-z"$recipients"];then 145case"$refname_type"in 146"annotated tag") 147 config_name="hooks.announcelist" 148;; 149*) 150 config_name="hooks.mailinglist" 151;; 152esac 153echo>&2"***$config_nameis not set so no email will be sent" 154echo>&2"*** for$refnameupdate$oldrev->$newrev" 155exit0 156fi 157 158# Email parameters 159# The email subject will contain the best description of the ref 160# that we can build from the parameters 161 describe=$(git describe $rev 2>/dev/null) 162if[-z"$describe"];then 163 describe=$rev 164fi 165 166 generate_email_header 167 168# Call the correct body generation function 169 fn_name=general 170case"$refname_type"in 171"tracking branch"|branch) 172 fn_name=branch 173;; 174"annotated tag") 175 fn_name=atag 176;; 177esac 178 generate_${change_type}_${fn_name}_email 179 180 generate_email_footer 181} 182 183generate_email_header() 184{ 185# --- Email (all stdout will be the email) 186# Generate header 187cat<<-EOF 188 To:$recipients 189 Subject:${emailprefix}$projectdesc$refname_type,$short_refname,${change_type}d.$describe 190 X-Git-Refname:$refname 191 X-Git-Reftype:$refname_type 192 X-Git-Oldrev:$oldrev 193 X-Git-Newrev:$newrev 194 195 This is an automated email from the git hooks/post-receive script. It was 196 generated because a ref change was pushed to the repository containing 197 the project "$projectdesc". 198 199 The$refname_type,$short_refnamehas been${change_type}d 200 EOF 201} 202 203generate_email_footer() 204{ 205 SPACE=" " 206cat<<-EOF 207 208 209 hooks/post-receive 210 --${SPACE} 211$projectdesc 212 EOF 213} 214 215# --------------- Branches 216 217# 218# Called for the creation of a branch 219# 220generate_create_branch_email() 221{ 222# This is a new branch and so oldrev is not valid 223echo" at$newrev($newrev_type)" 224echo"" 225 226echo$LOGBEGIN 227 show_new_revisions 228echo$LOGEND 229} 230 231# 232# Called for the change of a pre-existing branch 233# 234generate_update_branch_email() 235{ 236# Consider this: 237# 1 --- 2 --- O --- X --- 3 --- 4 --- N 238# 239# O is $oldrev for $refname 240# N is $newrev for $refname 241# X is a revision pointed to by some other ref, for which we may 242# assume that an email has already been generated. 243# In this case we want to issue an email containing only revisions 244# 3, 4, and N. Given (almost) by 245# 246# git rev-list N ^O --not --all 247# 248# The reason for the "almost", is that the "--not --all" will take 249# precedence over the "N", and effectively will translate to 250# 251# git rev-list N ^O ^X ^N 252# 253# So, we need to build up the list more carefully. git rev-parse 254# will generate a list of revs that may be fed into git rev-list. 255# We can get it to make the "--not --all" part and then filter out 256# the "^N" with: 257# 258# git rev-parse --not --all | grep -v N 259# 260# Then, using the --stdin switch to git rev-list we have effectively 261# manufactured 262# 263# git rev-list N ^O ^X 264# 265# This leaves a problem when someone else updates the repository 266# while this script is running. Their new value of the ref we're 267# working on would be included in the "--not --all" output; and as 268# our $newrev would be an ancestor of that commit, it would exclude 269# all of our commits. What we really want is to exclude the current 270# value of $refname from the --not list, rather than N itself. So: 271# 272# git rev-parse --not --all | grep -v $(git rev-parse $refname) 273# 274# Get's us to something pretty safe (apart from the small time 275# between refname being read, and git rev-parse running - for that, 276# I give up) 277# 278# 279# Next problem, consider this: 280# * --- B --- * --- O ($oldrev) 281# \ 282# * --- X --- * --- N ($newrev) 283# 284# That is to say, there is no guarantee that oldrev is a strict 285# subset of newrev (it would have required a --force, but that's 286# allowed). So, we can't simply say rev-list $oldrev..$newrev. 287# Instead we find the common base of the two revs and list from 288# there. 289# 290# As above, we need to take into account the presence of X; if 291# another branch is already in the repository and points at some of 292# the revisions that we are about to output - we don't want them. 293# The solution is as before: git rev-parse output filtered. 294# 295# Finally, tags: 1 --- 2 --- O --- T --- 3 --- 4 --- N 296# 297# Tags pushed into the repository generate nice shortlog emails that 298# summarise the commits between them and the previous tag. However, 299# those emails don't include the full commit messages that we output 300# for a branch update. Therefore we still want to output revisions 301# that have been output on a tag email. 302# 303# Luckily, git rev-parse includes just the tool. Instead of using 304# "--all" we use "--branches"; this has the added benefit that 305# "remotes/" will be ignored as well. 306 307# List all of the revisions that were removed by this update, in a 308# fast forward update, this list will be empty, because rev-list O 309# ^N is empty. For a non fast forward, O ^N is the list of removed 310# revisions 311 fast_forward="" 312rev="" 313forrevin$(git rev-list $newrev..$oldrev) 314do 315 revtype=$(git cat-file -t "$rev") 316echo" discards$rev($revtype)" 317done 318if[-z"$rev"];then 319 fast_forward=1 320fi 321 322# List all the revisions from baserev to newrev in a kind of 323# "table-of-contents"; note this list can include revisions that 324# have already had notification emails and is present to show the 325# full detail of the change from rolling back the old revision to 326# the base revision and then forward to the new revision 327forrevin$(git rev-list $oldrev..$newrev) 328do 329 revtype=$(git cat-file -t "$rev") 330echo" via$rev($revtype)" 331done 332 333if["$fast_forward"];then 334echo" from$oldrev($oldrev_type)" 335else 336# 1. Existing revisions were removed. In this case newrev 337# is a subset of oldrev - this is the reverse of a 338# fast-forward, a rewind 339# 2. New revisions were added on top of an old revision, 340# this is a rewind and addition. 341 342# (1) certainly happened, (2) possibly. When (2) hasn't 343# happened, we set a flag to indicate that no log printout 344# is required. 345 346echo"" 347 348# Find the common ancestor of the old and new revisions and 349# compare it with newrev 350 baserev=$(git merge-base $oldrev $newrev) 351 rewind_only="" 352if["$baserev"="$newrev"];then 353echo"This update discarded existing revisions and left the branch pointing at" 354echo"a previous point in the repository history." 355echo"" 356echo" * -- * -- N ($newrev)" 357echo"\\" 358echo" O -- O -- O ($oldrev)" 359echo"" 360echo"The removed revisions are not necessarilly gone - if another reference" 361echo"still refers to them they will stay in the repository." 362 rewind_only=1 363else 364echo"This update added new revisions after undoing existing revisions. That is" 365echo"to say, the old revision is not a strict subset of the new revision. This" 366echo"situation occurs when you --force push a change and generate a repository" 367echo"containing something like this:" 368echo"" 369echo" * -- * -- B -- O -- O -- O ($oldrev)" 370echo"\\" 371echo" N -- N -- N ($newrev)" 372echo"" 373echo"When this happens we assume that you've already had alert emails for all" 374echo"of the O revisions, and so we here report only the revisions in the N" 375echo"branch from the common base, B." 376fi 377fi 378 379echo"" 380if[-z"$rewind_only"];then 381echo"Those revisions listed above that are new to this repository have" 382echo"not appeared on any other notification email; so we list those" 383echo"revisions in full, below." 384 385echo"" 386echo$LOGBEGIN 387 show_new_revisions 388 389# XXX: Need a way of detecting whether git rev-list actually 390# outputted anything, so that we can issue a "no new 391# revisions added by this update" message 392 393echo$LOGEND 394else 395echo"No new revisions were added by this update." 396fi 397 398# The diffstat is shown from the old revision to the new revision. 399# This is to show the truth of what happened in this change. 400# There's no point showing the stat from the base to the new 401# revision because the base is effectively a random revision at this 402# point - the user will be interested in what this revision changed 403# - including the undoing of previous revisions in the case of 404# non-fast forward updates. 405echo"" 406echo"Summary of changes:" 407 git diff-tree --stat --summary --find-copies-harder$oldrev..$newrev 408} 409 410# 411# Called for the deletion of a branch 412# 413generate_delete_branch_email() 414{ 415echo" was$oldrev" 416echo"" 417echo$LOGEND 418 git show -s --pretty=oneline $oldrev 419echo$LOGEND 420} 421 422# --------------- Annotated tags 423 424# 425# Called for the creation of an annotated tag 426# 427generate_create_atag_email() 428{ 429echo" at$newrev($newrev_type)" 430 431 generate_atag_email 432} 433 434# 435# Called for the update of an annotated tag (this is probably a rare event 436# and may not even be allowed) 437# 438generate_update_atag_email() 439{ 440echo" to$newrev($newrev_type)" 441echo" from$oldrev(which is now obsolete)" 442 443 generate_atag_email 444} 445 446# 447# Called when an annotated tag is created or changed 448# 449generate_atag_email() 450{ 451# Use git for-each-ref to pull out the individual fields from the 452# tag 453eval $(git for-each-ref --shell --format=' 454 tagobject=%(*objectname) 455 tagtype=%(*objecttype) 456 tagger=%(taggername) 457 tagged=%(taggerdate)'$refname 458) 459 460echo" tagging$tagobject($tagtype)" 461case"$tagtype"in 462 commit) 463 464# If the tagged object is a commit, then we assume this is a 465# release, and so we calculate which tag this tag is 466# replacing 467 prevtag=$(git describe --abbrev=0 $newrev^ 2>/dev/null) 468 469if[-n"$prevtag"];then 470echo" replaces$prevtag" 471fi 472;; 473*) 474echo" length$(git cat-file -s $tagobject)bytes" 475;; 476esac 477echo" tagged by$tagger" 478echo" on$tagged" 479 480echo"" 481echo$LOGBEGIN 482 483# Show the content of the tag message; this might contain a change 484# log or release notes so is worth displaying. 485 git cat-file tag $newrev|sed-e'1,/^$/d' 486 487echo"" 488case"$tagtype"in 489 commit) 490# Only commit tags make sense to have rev-list operations 491# performed on them 492if[-n"$prevtag"];then 493# Show changes since the previous release 494 git rev-list --pretty=short "$prevtag..$newrev"| git shortlog 495else 496# No previous tag, show all the changes since time 497# began 498 git rev-list --pretty=short $newrev| git shortlog 499fi 500;; 501*) 502# XXX: Is there anything useful we can do for non-commit 503# objects? 504;; 505esac 506 507echo$LOGEND 508} 509 510# 511# Called for the deletion of an annotated tag 512# 513generate_delete_atag_email() 514{ 515echo" was$oldrev" 516echo"" 517echo$LOGEND 518 git show -s --pretty=oneline $oldrev 519echo$LOGEND 520} 521 522# --------------- General references 523 524# 525# Called when any other type of reference is created (most likely a 526# non-annotated tag) 527# 528generate_create_general_email() 529{ 530echo" at$newrev($newrev_type)" 531 532 generate_general_email 533} 534 535# 536# Called when any other type of reference is updated (most likely a 537# non-annotated tag) 538# 539generate_update_general_email() 540{ 541echo" to$newrev($newrev_type)" 542echo" from$oldrev" 543 544 generate_general_email 545} 546 547# 548# Called for creation or update of any other type of reference 549# 550generate_general_email() 551{ 552# Unannotated tags are more about marking a point than releasing a 553# version; therefore we don't do the shortlog summary that we do for 554# annotated tags above - we simply show that the point has been 555# marked, and print the log message for the marked point for 556# reference purposes 557# 558# Note this section also catches any other reference type (although 559# there aren't any) and deals with them in the same way. 560 561echo"" 562if["$newrev_type"="commit"];then 563echo$LOGBEGIN 564 git show --no-color --root -s --pretty=medium $newrev 565echo$LOGEND 566else 567# What can we do here? The tag marks an object that is not 568# a commit, so there is no log for us to display. It's 569# probably not wise to output git cat-file as it could be a 570# binary blob. We'll just say how big it is 571echo"$newrevis a$newrev_type, and is$(git cat-file -s $newrev)bytes long." 572fi 573} 574 575# 576# Called for the deletion of any other type of reference 577# 578generate_delete_general_email() 579{ 580echo" was$oldrev" 581echo"" 582echo$LOGEND 583 git show -s --pretty=oneline $oldrev 584echo$LOGEND 585} 586 587 588# --------------- Miscellaneous utilities 589 590# 591# Show new revisions as the user would like to see them in the email. 592# 593show_new_revisions() 594{ 595# This shows all log entries that are not already covered by 596# another ref - i.e. commits that are now accessible from this 597# ref that were previously not accessible 598# (see generate_update_branch_email for the explanation of this 599# command) 600 601# Revision range passed to rev-list differs for new vs. updated 602# branches. 603if["$change_type"= create ] 604then 605# Show all revisions exclusive to this (new) branch. 606 revspec=$newrev 607else 608# Branch update; show revisions not part of $oldrev. 609 revspec=$oldrev..$newrev 610fi 611 612 git rev-parse --not --branches|grep-v$(git rev-parse $refname)| 613 git rev-list --pretty --stdin$revspec 614} 615 616 617send_mail() 618{ 619if[-n"$envelopesender"];then 620/usr/sbin/sendmail -t -f"$envelopesender" 621else 622/usr/sbin/sendmail -t 623fi 624} 625 626# ---------------------------- main() 627 628# --- Constants 629LOGBEGIN="- Log -----------------------------------------------------------------" 630LOGEND="-----------------------------------------------------------------------" 631 632# --- Config 633# Set GIT_DIR either from the working directory, or from the environment 634# variable. 635GIT_DIR=$(git rev-parse --git-dir 2>/dev/null) 636if[-z"$GIT_DIR"];then 637echo>&2"fatal: post-receive: GIT_DIR not set" 638exit1 639fi 640 641projectdesc=$(sed -ne '1p' "$GIT_DIR/description") 642# Check if the description is unchanged from it's default, and shorten it to 643# a more manageable length if it is 644ifexpr"$projectdesc":"Unnamed repository.*$">/dev/null 645then 646 projectdesc="UNNAMED PROJECT" 647fi 648 649recipients=$(git config hooks.mailinglist) 650announcerecipients=$(git config hooks.announcelist) 651envelopesender=$(git config hooks.envelopesender) 652emailprefix=$(git config hooks.emailprefix || echo '[SCM] ') 653 654# --- Main loop 655# Allow dual mode: run from the command line just like the update hook, or 656# if no arguments are given then run as a hook script 657if[-n"$1"-a -n"$2"-a -n"$3"];then 658# Output to the terminal in command line mode - if someone wanted to 659# resend an email; they could redirect the output to sendmail 660# themselves 661 PAGER= generate_email $2 $3 $1 662else 663whileread oldrev newrev refname 664do 665 generate_email $oldrev $newrev $refname| send_mail 666done 667fi