X7ROOT File Manager
Current Path:
/usr/share/doc/rsync-3.1.2/support
usr
/
share
/
doc
/
rsync-3.1.2
/
support
/
📁
..
📄
Makefile
(80 B)
📄
atomic-rsync
(3.9 KB)
📄
cvs2includes
(1.18 KB)
📄
deny-rsync
(997 B)
📄
file-attr-restore
(4.82 KB)
📄
files-to-excludes
(534 B)
📄
git-set-file-times
(910 B)
📄
instant-rsyncd
(2.72 KB)
📄
logfilter
(1.07 KB)
📄
lsh
(2.21 KB)
📄
lsh.sh
(956 B)
📄
mapfrom
(629 B)
📄
mapto
(621 B)
📄
mnt-excl
(1.8 KB)
📄
munge-symlinks
(1.43 KB)
📄
rrsync
(7.07 KB)
📄
rsync-no-vanished
(267 B)
📄
rsync-slash-strip
(643 B)
📄
rsyncstats
(8.56 KB)
📄
savetransfer.c
(4.45 KB)
Editing: git-set-file-times
#!/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 (<FH>) { chomp; $ls{$_} = $_; } close FH; $/ = "\n"; open FH, "git log -r --name-only --no-color --pretty=raw -z @ARGV |" or die $!; while (<FH>) { 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;
Upload File
Create Folder