/usr/share/rsync/scripts
NameSizeModeActions
atomic-rsync39950755editdlrm
cull_options24430755editdlrm
cvs2includes12120755editdlrm
file-attr-restore49320755editdlrm
files-to-excludes5340755editdlrm
git-set-file-times9100755editdlrm
logfilter11000755editdlrm
lsh22590755editdlrm
mnt-excl18440755editdlrm
munge-symlinks14620755editdlrm
rrsync72390755editdlrm
rsyncstats86830755editdlrm
Edit: /usr/share/rsync/scripts/git-set-file-times (910B)
#!/usr/bin/perl use strict; use warnings; # Sets mtime and atime of files to the latest commit time in git. # # This is useful after the first clone of the rsync repository BEFORE you # do any building. It is also safe if you have done a "make distclean". my %ls; my $commit_time; my $prefix = @ARGV && $ARGV[0] =~ s/^--prefix=// ? shift : ''; $/ = "\0"; open FH, 'git ls-files -z|' or die $!; while () { chomp; $ls{$_} = $_; } close FH; $/ = "\n"; open FH, "git log -r --name-only --no-color --pretty=raw -z @ARGV |" or die $!; while () { chomp; if (/^committer .*? (\d+) (?:[\-\+]\d+)$/) { $commit_time = $1; } elsif (s/\0\0commit [a-f0-9]{40}$// or s/\0$//) { my @files = delete @ls{split(/\0/, $_)}; @files = grep { defined $_ } @files; next unless @files; map { s/^/$prefix/ } @files; utime $commit_time, $commit_time, @files; } last unless %ls; } close FH;