2 # This is a generic update hook script for GIT repositories.
3 # Written by Martin Mares <mj@ucw.cz> and placed into public domain.
14 my $subject_prefix = "GIT";
18 'mail-to=s' => \$mail_to,
19 'subject-prefix=s' => \$subject_prefix,
20 'max-diff-size=s' => \$max_diff_size,
21 ) and @ARGV == 3 or die <<AMEN ;
22 Usage: $0 [<options>] <refname> <sha1-old> <sha1-new>
25 --mail-to=<address> Send mail to the given address
26 --max-diff-size=<bytes> If the diff is too long, send just a summary
27 --subject-prefix=<px> Prefix subjects with [<px>] (default: GIT)
30 my ($ref, $old, $new) = @ARGV;
31 $ref =~ s{^refs/heads/}{} or exit 0;
32 $old ne $new or exit 0;
34 my $repo = POSIX::getcwd();
37 my $subj = '[' . $subject_prefix . ($ref eq 'master' ? '' : "/$ref") . ']';
38 my $out = File::Temp->new() or die;
39 my $outname = $out->filename;
41 open ORIG_STDOUT, '>&', \*STDOUT;
43 open STDOUT, '>&', $out or die;
45 my @rev_list_options = ('--pretty', '--no-abbrev', '--date=iso');
46 my @diff_options = ('-C');
49 # Is there any branch pointing to $new ?
50 for (`git branch -v --no-abbrev`) {
52 my ($name, $sha) = /^..(\S+)\s+(\S+)/ or die;
53 if ($name ne $ref && $sha eq $new) {
61 print $out "Most recent commits:\n\n";
62 system 'git', 'rev-list', @rev_list_options, '--max-count=20', $new;
71 # Creation of a branch
72 $subj .= ' Created branch';
73 my $copy_of = scan_branches();
74 if (defined $copy_of) {
75 $subj .= " as a copy of $copy_of";
76 print $out "Created branch $ref as a copy of $copy_of ($new).\n";
78 print $out "Created branch $ref ($new).\n\n";
81 } elsif ($new =~ /^0+$/) {
82 # Deletion of a branch
83 $subj .= ' Branch deleted';
84 print $out "Deleted branch $ref ($old).\n";
86 my $lca = `git merge-base $old $new`; die if $?;
90 # Scan all commits first and construct subject
91 my @commits = `git rev-list $old..$new --pretty=oneline --no-abbrev --no-merges`; $? and die;
97 print $out "Push to branch $ref ($old -> $new)\n\n";
99 # If there are multiple commits, print an overall diffstat first
102 print $out "Overall diffstat:\n\n";
103 system 'git', 'diff', '--stat', $old, $new;
104 print $out "\nCommits:\n\n";
106 my $pos_after_header = output_size();
108 # Show individual commits with diffs and stats
109 system 'git', 'log', @rev_list_options, @diff_options, '-p', '--stat', "$old..$new";
111 # If the file is too long, truncate it and print just a summary
112 if (defined($max_diff_size) && output_size() > $max_diff_size) {
113 $out->truncate($pos_after_header);
115 print $out "Diff was too long, printing just a summary.\n\n";
116 system 'git', 'log', @rev_list_options, "$old..$new";
118 } elsif ($lca eq $new) {
120 $subj .= ' Branch rewound';
121 print $out "Rewound branch $ref ($old -> $new).\n\n";
124 # Otherwise it is a rebase
125 $subj .= ' Branch rebased';
126 print $out "Rebased branch $ref ($old -> $new).\n\n";
127 print $out "Commits from common ancestor:\n\n";
128 system 'git', 'rev-list', @rev_list_options, $new, "^$old";
133 if (defined $mail_to) {
135 open STDIN, '<', $outname;
139 '-e', 'set charset="utf-8"',
140 '-e', 'set send_charset="us-ascii:iso-8859-2:utf-8"',
141 '-e', "my_hdr X-Git-Repo: $repo",
142 '-e', "my_hdr X-Git-Branch: $ref",
143 '-e', "my_hdr X-Git-Old-SHA: $old",
144 '-e', "my_hdr X-Git-New-SHA: $new",
148 open STDOUT, '>&', \*ORIG_STDOUT;
149 print "Subject: $subj\n\n";
150 system 'cat', $outname;