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 committer will be obtained from the latest existing rev; so 160# for a deletion it will be the oldrev, for the others, then newrev 161 committer=$(git show --pretty=full -s$rev|sed-ne"s/^Commit: //p"| 162sed-ne's/\(.*\) </"\1" </p') 163# The email subject will contain the best description of the ref 164# that we can build from the parameters 165 describe=$(git describe $rev 2>/dev/null) 166if[-z"$describe"];then 167 describe=$rev 168fi 169 170 generate_email_header 171 172# Call the correct body generation function 173 fn_name=general 174case"$refname_type"in 175"tracking branch"|branch) 176 fn_name=branch 177;; 178"annotated tag") 179 fn_name=atag 180;; 181esac 182 generate_${change_type}_${fn_name}_email 183 184 generate_email_footer 185} 186 187generate_email_header() 188{ 189# --- Email (all stdout will be the email) 190# Generate header 191cat<<-EOF 192 To:$recipients 193 Subject:${emailprefix}$projectdesc$refname_type,$short_refname,${change_type}d.$describe 194 X-Git-Refname:$refname 195 X-Git-Reftype:$refname_type 196 X-Git-Oldrev:$oldrev 197 X-Git-Newrev:$newrev 198 199 This is an automated email from the git hooks/post-receive script. It was 200 generated because a ref change was pushed to the repository containing 201 the project "$projectdesc". 202 203 The$refname_type,$short_refnamehas been${change_type}d 204 EOF 205} 206 207generate_email_footer() 208{ 209cat<<-EOF 210 211 212 hooks/post-receive 213 -- 214$projectdesc 215 EOF 216} 217 218# --------------- Branches 219 220# 221# Called for the creation of a branch 222# 223generate_create_branch_email() 224{ 225# This is a new branch and so oldrev is not valid 226echo" at$newrev($newrev_type)" 227echo"" 228 229echo$LOGBEGIN 230# This shows all log entries that are not already covered by 231# another ref - i.e. commits that are now accessible from this 232# ref that were previously not accessible 233# (see generate_update_branch_email for the explanation of this 234# command) 235 git rev-parse --not --branches|grep-v$(git rev-parse $refname)| 236 git rev-list --pretty --stdin$newrev 237echo$LOGEND 238} 239 240# 241# Called for the change of a pre-existing branch 242# 243generate_update_branch_email() 244{ 245# Consider this: 246# 1 --- 2 --- O --- X --- 3 --- 4 --- N 247# 248# O is $oldrev for $refname 249# N is $newrev for $refname 250# X is a revision pointed to by some other ref, for which we may 251# assume that an email has already been generated. 252# In this case we want to issue an email containing only revisions 253# 3, 4, and N. Given (almost) by 254# 255# git-rev-list N ^O --not --all 256# 257# The reason for the "almost", is that the "--not --all" will take 258# precedence over the "N", and effectively will translate to 259# 260# git-rev-list N ^O ^X ^N 261# 262# So, we need to build up the list more carefully. git-rev-parse 263# will generate a list of revs that may be fed into git-rev-list. 264# We can get it to make the "--not --all" part and then filter out 265# the "^N" with: 266# 267# git-rev-parse --not --all | grep -v N 268# 269# Then, using the --stdin switch to git-rev-list we have effectively 270# manufactured 271# 272# git-rev-list N ^O ^X 273# 274# This leaves a problem when someone else updates the repository 275# while this script is running. Their new value of the ref we're 276# working on would be included in the "--not --all" output; and as 277# our $newrev would be an ancestor of that commit, it would exclude 278# all of our commits. What we really want is to exclude the current 279# value of $refname from the --not list, rather than N itself. So: 280# 281# git-rev-parse --not --all | grep -v $(git-rev-parse $refname) 282# 283# Get's us to something pretty safe (apart from the small time 284# between refname being read, and git-rev-parse running - for that, 285# I give up) 286# 287# 288# Next problem, consider this: 289# * --- B --- * --- O ($oldrev) 290# \ 291# * --- X --- * --- N ($newrev) 292# 293# That is to say, there is no guarantee that oldrev is a strict 294# subset of newrev (it would have required a --force, but that's 295# allowed). So, we can't simply say rev-list $oldrev..$newrev. 296# Instead we find the common base of the two revs and list from 297# there. 298# 299# As above, we need to take into account the presence of X; if 300# another branch is already in the repository and points at some of 301# the revisions that we are about to output - we don't want them. 302# The solution is as before: git-rev-parse output filtered. 303# 304# Finally, tags: 1 --- 2 --- O --- T --- 3 --- 4 --- N 305# 306# Tags pushed into the repository generate nice shortlog emails that 307# summarise the commits between them and the previous tag. However, 308# those emails don't include the full commit messages that we output 309# for a branch update. Therefore we still want to output revisions 310# that have been output on a tag email. 311# 312# Luckily, git-rev-parse includes just the tool. Instead of using 313# "--all" we use "--branches"; this has the added benefit that 314# "remotes/" will be ignored as well. 315 316# List all of the revisions that were removed by this update, in a 317# fast forward update, this list will be empty, because rev-list O 318# ^N is empty. For a non fast forward, O ^N is the list of removed 319# revisions 320 fast_forward="" 321rev="" 322forrevin$(git rev-list $newrev..$oldrev) 323do 324 revtype=$(git cat-file -t "$rev") 325echo" discards$rev($revtype)" 326done 327if[-z"$rev"];then 328 fast_forward=1 329fi 330 331# List all the revisions from baserev to newrev in a kind of 332# "table-of-contents"; note this list can include revisions that 333# have already had notification emails and is present to show the 334# full detail of the change from rolling back the old revision to 335# the base revision and then forward to the new revision 336forrevin$(git rev-list $oldrev..$newrev) 337do 338 revtype=$(git cat-file -t "$rev") 339echo" via$rev($revtype)" 340done 341 342if["$fast_forward"];then 343echo" from$oldrev($oldrev_type)" 344else 345# 1. Existing revisions were removed. In this case newrev 346# is a subset of oldrev - this is the reverse of a 347# fast-forward, a rewind 348# 2. New revisions were added on top of an old revision, 349# this is a rewind and addition. 350 351# (1) certainly happened, (2) possibly. When (2) hasn't 352# happened, we set a flag to indicate that no log printout 353# is required. 354 355echo"" 356 357# Find the common ancestor of the old and new revisions and 358# compare it with newrev 359 baserev=$(git merge-base $oldrev $newrev) 360 rewind_only="" 361if["$baserev"="$newrev"];then 362echo"This update discarded existing revisions and left the branch pointing at" 363echo"a previous point in the repository history." 364echo"" 365echo" * -- * -- N ($newrev)" 366echo"\\" 367echo" O -- O -- O ($oldrev)" 368echo"" 369echo"The removed revisions are not necessarilly gone - if another reference" 370echo"still refers to them they will stay in the repository." 371 rewind_only=1 372else 373echo"This update added new revisions after undoing existing revisions. That is" 374echo"to say, the old revision is not a strict subset of the new revision. This" 375echo"situation occurs when you --force push a change and generate a repository" 376echo"containing something like this:" 377echo"" 378echo" * -- * -- B -- O -- O -- O ($oldrev)" 379echo"\\" 380echo" N -- N -- N ($newrev)" 381echo"" 382echo"When this happens we assume that you've already had alert emails for all" 383echo"of the O revisions, and so we here report only the revisions in the N" 384echo"branch from the common base, B." 385fi 386fi 387 388echo"" 389if[-z"$rewind_only"];then 390echo"Those revisions listed above that are new to this repository have" 391echo"not appeared on any other notification email; so we list those" 392echo"revisions in full, below." 393 394echo"" 395echo$LOGBEGIN 396 git rev-parse --not --branches|grep-v$(git rev-parse $refname)| 397 git rev-list --pretty --stdin$oldrev..$newrev 398 399# XXX: Need a way of detecting whether git rev-list actually 400# outputted anything, so that we can issue a "no new 401# revisions added by this update" message 402 403echo$LOGEND 404else 405echo"No new revisions were added by this update." 406fi 407 408# The diffstat is shown from the old revision to the new revision. 409# This is to show the truth of what happened in this change. 410# There's no point showing the stat from the base to the new 411# revision because the base is effectively a random revision at this 412# point - the user will be interested in what this revision changed 413# - including the undoing of previous revisions in the case of 414# non-fast forward updates. 415echo"" 416echo"Summary of changes:" 417 git diff-tree --stat --summary --find-copies-harder$oldrev..$newrev 418} 419 420# 421# Called for the deletion of a branch 422# 423generate_delete_branch_email() 424{ 425echo" was$oldrev" 426echo"" 427echo$LOGEND 428 git show -s --pretty=oneline $oldrev 429echo$LOGEND 430} 431 432# --------------- Annotated tags 433 434# 435# Called for the creation of an annotated tag 436# 437generate_create_atag_email() 438{ 439echo" at$newrev($newrev_type)" 440 441 generate_atag_email 442} 443 444# 445# Called for the update of an annotated tag (this is probably a rare event 446# and may not even be allowed) 447# 448generate_update_atag_email() 449{ 450echo" to$newrev($newrev_type)" 451echo" from$oldrev(which is now obsolete)" 452 453 generate_atag_email 454} 455 456# 457# Called when an annotated tag is created or changed 458# 459generate_atag_email() 460{ 461# Use git-for-each-ref to pull out the individual fields from the 462# tag 463eval $(git for-each-ref --shell --format=' 464 tagobject=%(*objectname) 465 tagtype=%(*objecttype) 466 tagger=%(taggername) 467 tagged=%(taggerdate)'$refname 468) 469 470echo" tagging$tagobject($tagtype)" 471case"$tagtype"in 472 commit) 473 474# If the tagged object is a commit, then we assume this is a 475# release, and so we calculate which tag this tag is 476# replacing 477 prevtag=$(git describe --abbrev=0 $newrev^ 2>/dev/null) 478 479if[-n"$prevtag"];then 480echo" replaces$prevtag" 481fi 482;; 483*) 484echo" length$(git cat-file -s $tagobject)bytes" 485;; 486esac 487echo" tagged by$tagger" 488echo" on$tagged" 489 490echo"" 491echo$LOGBEGIN 492 493# Show the content of the tag message; this might contain a change 494# log or release notes so is worth displaying. 495 git cat-file tag $newrev|sed-e'1,/^$/d' 496 497echo"" 498case"$tagtype"in 499 commit) 500# Only commit tags make sense to have rev-list operations 501# performed on them 502if[-n"$prevtag"];then 503# Show changes since the previous release 504 git rev-list --pretty=short "$prevtag..$newrev"| git shortlog 505else 506# No previous tag, show all the changes since time 507# began 508 git rev-list --pretty=short $newrev| git shortlog 509fi 510;; 511*) 512# XXX: Is there anything useful we can do for non-commit 513# objects? 514;; 515esac 516 517echo$LOGEND 518} 519 520# 521# Called for the deletion of an annotated tag 522# 523generate_delete_atag_email() 524{ 525echo" was$oldrev" 526echo"" 527echo$LOGEND 528 git show -s --pretty=oneline $oldrev 529echo$LOGEND 530} 531 532# --------------- General references 533 534# 535# Called when any other type of reference is created (most likely a 536# non-annotated tag) 537# 538generate_create_general_email() 539{ 540echo" at$newrev($newrev_type)" 541 542 generate_general_email 543} 544 545# 546# Called when any other type of reference is updated (most likely a 547# non-annotated tag) 548# 549generate_update_general_email() 550{ 551echo" to$newrev($newrev_type)" 552echo" from$oldrev" 553 554 generate_general_email 555} 556 557# 558# Called for creation or update of any other type of reference 559# 560generate_general_email() 561{ 562# Unannotated tags are more about marking a point than releasing a 563# version; therefore we don't do the shortlog summary that we do for 564# annotated tags above - we simply show that the point has been 565# marked, and print the log message for the marked point for 566# reference purposes 567# 568# Note this section also catches any other reference type (although 569# there aren't any) and deals with them in the same way. 570 571echo"" 572if["$newrev_type"="commit"];then 573echo$LOGBEGIN 574 git show --no-color --root -s$newrev 575echo$LOGEND 576else 577# What can we do here? The tag marks an object that is not 578# a commit, so there is no log for us to display. It's 579# probably not wise to output git-cat-file as it could be a 580# binary blob. We'll just say how big it is 581echo"$newrevis a$newrev_type, and is$(git cat-file -s $newrev)bytes long." 582fi 583} 584 585# 586# Called for the deletion of any other type of reference 587# 588generate_delete_general_email() 589{ 590echo" was$oldrev" 591echo"" 592echo$LOGEND 593 git show -s --pretty=oneline $oldrev 594echo$LOGEND 595} 596 597send_mail() 598{ 599if[-n"$envelopesender"];then 600/usr/sbin/sendmail -t -f"$envelopesender" 601else 602/usr/sbin/sendmail -t 603fi 604} 605 606# ---------------------------- main() 607 608# --- Constants 609LOGBEGIN="- Log -----------------------------------------------------------------" 610LOGEND="-----------------------------------------------------------------------" 611 612# --- Config 613# Set GIT_DIR either from the working directory, or from the environment 614# variable. 615GIT_DIR=$(git rev-parse --git-dir 2>/dev/null) 616if[-z"$GIT_DIR"];then 617echo>&2"fatal: post-receive: GIT_DIR not set" 618exit1 619fi 620 621projectdesc=$(sed -ne '1p' "$GIT_DIR/description") 622# Check if the description is unchanged from it's default, and shorten it to 623# a more manageable length if it is 624ifexpr"$projectdesc":"Unnamed repository.*$">/dev/null 625then 626 projectdesc="UNNAMED PROJECT" 627fi 628 629recipients=$(git repo-config hooks.mailinglist) 630announcerecipients=$(git repo-config hooks.announcelist) 631envelopesender=$(git-repo-config hooks.envelopesender) 632emailprefix=$(git-repo-config hooks.emailprefix || echo '[SCM] ') 633 634# --- Main loop 635# Allow dual mode: run from the command line just like the update hook, or 636# if no arguments are given then run as a hook script 637if[-n"$1"-a -n"$2"-a -n"$3"];then 638# Output to the terminal in command line mode - if someone wanted to 639# resend an email; they could redirect the output to sendmail 640# themselves 641 PAGER= generate_email $2 $3 $1 642else 643whileread oldrev newrev refname 644do 645 generate_email $oldrev $newrev $refname| send_mail 646done 647fi