All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eric Wong <normalperson@yhbt.net>
To: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Cc: Git Mailing List <git@vger.kernel.org>
Subject: Re: mtimes of working files
Date: Wed, 11 Jul 2007 23:26:05 -0700	[thread overview]
Message-ID: <20070712062605.GD29676@muzzle> (raw)
In-Reply-To: <Pine.LNX.4.64.0707111940080.4516@racer.site>

Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote:
> Hi list,
> 
> > > > How difficult is it to have script (or maybe existing git option) 
> > > > that would make mtimes of all working files equal to time of last 
> > > > commit ?
> 
> Now I slowly get really curious.  Does _anybody_ know a scenario where 
> this makes sense?
> 
> (No, Eric, there are enough corner cases where your example of a clustered 
> webserver breaks down, so I am not fully convinced that this is a useful 
> case.)

I'll have to admit that most of my git usage is via git-svn, so I
mostly deal with linear history and some branching, but no real merges
in a git sense.

This is what I whipped up the other night:

http://yhbt.net/git-set-file-times

-----------------------------------8<-----------------------------------------
#!/usr/bin/perl -w
use strict;

# sets mtime and atime of files to the latest commit time in git
#
# This is useful for serving static content (managed by git)
# from a cluster of identically configured HTTP servers.  HTTP
# clients and content delivery networks can get consistent
# Last-Modified headers no matter which HTTP server in the
# cluster they hit.  This should improve caching behavior.
#
# This does not take into account merges, but if you're updating
# every machine in the cluster from the same commit (A) to the
# same commit (B), the mtimes will be _consistent_ across all
# machines if not necesarily accurate.
#
# THIS IS NOT INTENDED TO OPTIMIZE BUILD SYSTEMS SUCH AS 'make'
# YOU HAVE BEEN WARNED!

my %ls = ();
my $commit_time;

$/ = "\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}$//) {
		my @files = delete @ls{split(/\0/, $_)};
		@files = grep { defined $_ } @files;
		next unless @files;
		utime $commit_time, $commit_time, @files;
	}
	last unless %ls;

}
close FH;
-----------------------------------8<-----------------------------------------

-- 
Eric Wong

  parent reply	other threads:[~2007-07-12  6:26 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-11 15:08 mtimes of working files Yakov Lerner
2007-07-11 18:05 ` Johannes Schindelin
2007-07-11 18:36   ` Yakov Lerner
2007-07-11 18:42     ` Johannes Schindelin
2007-07-11 20:26       ` Jan Hudec
2007-07-12  7:57         ` Andy Parkins
2007-07-12 17:27           ` David Woodhouse
2007-07-13  0:37             ` Theodore Tso
2007-07-13 23:00               ` David Woodhouse
2007-07-13 23:18                 ` Linus Torvalds
2007-07-13 23:46                   ` David Woodhouse
2007-07-14  0:10                     ` Linus Torvalds
2007-07-14  0:36                       ` David Woodhouse
2007-07-14  0:44                         ` J. Bruce Fields
2007-07-14  0:49                           ` David Woodhouse
2007-07-14  1:29                             ` Jakub Narebski
2007-07-14 13:23                             ` Robin Rosenberg
2007-07-14 13:09                     ` Julian Phillips
2007-07-14 22:22                     ` Jan Hudec
2007-07-14 22:36                       ` Julian Phillips
2007-07-15  1:46                         ` Daniel Barkalow
2007-07-12  6:26       ` Eric Wong [this message]
2007-07-12 13:05         ` Randal L. Schwartz
2007-07-12 18:25           ` Eric Wong

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20070712062605.GD29676@muzzle \
    --to=normalperson@yhbt.net \
    --cc=Johannes.Schindelin@gmx.de \
    --cc=git@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.