Re: mtimes of working files

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



"Randal L. Schwartz" <merlyn@xxxxxxxxxxxxxx> wrote:
> >>>>> "Eric" == Eric Wong <normalperson@xxxxxxxx> writes:
> 
> Eric> open FH, "git log -r --name-only --no-color --pretty=raw -z @ARGV |" or die $!;
> 
> This breaks needlessly on @ARGV names that contain spaces.  You want:
> 
>   open FH, "-|", qw(git log -r --name-only --no-color --pretty=raw -z), @ARGV or die $!;
> 
> But that sounds familiar.... I think there's a function somewhere included in
> the git distro that does this.  I'm old and senile though. :)

Yep, I added that @ARGV at the last second and didn't care enough to fix
it.  I didn't want to link this into the git build system so that it
could find Git.pm, either.

So I'll just go with this 5.8-ism.  I didn't really intend for that
script to go anywhere, maybe somebody who wants it badly enough can make
the ls-files call respect any path limiting intended in @ARGV but still
allow revision ranges to be passed (my original intention of supporting
@ARGV was only revision ranges).

-- 
Eric Wong
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux