Combine Globals and Locals into a Vars struct that parallels Defaults,
[rsync/rsync.git] / support / git-set-file-times
CommitLineData
01e293f1 1#!/usr/bin/perl
90c98cdc 2use strict;
01e293f1 3use warnings;
90c98cdc
WD
4
5# Sets mtime and atime of files to the latest commit time in git.
6#
7# This is useful after the first clone of the rsync repository BEFORE you
8# do any building. It is also safe if you have done a "make distclean".
9
10my %ls;
11my $commit_time;
9217ce30 12my $prefix = @ARGV && $ARGV[0] =~ s/^--prefix=// ? shift : '';
90c98cdc
WD
13
14$/ = "\0";
15open FH, 'git ls-files -z|' or die $!;
16while (<FH>) {
17 chomp;
18 $ls{$_} = $_;
19}
20close FH;
21
22$/ = "\n";
23open FH, "git log -r --name-only --no-color --pretty=raw -z @ARGV |" or die $!;
24while (<FH>) {
25 chomp;
26 if (/^committer .*? (\d+) (?:[\-\+]\d+)$/) {
27 $commit_time = $1;
28 } elsif (s/\0\0commit [a-f0-9]{40}$// or s/\0$//) {
29 my @files = delete @ls{split(/\0/, $_)};
30 @files = grep { defined $_ } @files;
31 next unless @files;
9217ce30 32 map { s/^/$prefix/ } @files;
90c98cdc
WD
33 utime $commit_time, $commit_time, @files;
34 }
35 last unless %ls;
36}
37close FH;