Re-run nhgitset.pl to install. "perldoc DEVEL/hooksdir/nhsub" for details. General docs still to come. Quick notes: - "git nhsub" lets you apply substitutions to a file without involving any version control. - When doing nhadd/nhcommit, the working directory WILL reflect the results of the substitutions. Let's see what this breaks.
20 lines
528 B
Perl
20 lines
528 B
Perl
#!/usr/bin/perl
|
|
# wrapper for nhadd and nhcommit aliases
|
|
# $NHDT-Date: 1427408239 2015/03/26 22:17:19 $
|
|
|
|
%ok = map { $_ => 1 } ('add', 'commit');
|
|
|
|
die "Bad subcommand '$ARGV[0]'" unless $ok{$ARGV[0]};
|
|
|
|
# we won't fail on a failure, so just system()
|
|
$rv = system('.git/hooks/nhsub',"--$ARGV[0]",@ARGV[1..$#ARGV]);
|
|
if($rv){
|
|
print "warning: nhsub failed: $rv $!\n";
|
|
}
|
|
|
|
if(length $ENV{GIT_PREFIX}){
|
|
chdir($ENV{GIT_PREFIX}) or die "Can't chdir $ENV{GIT_PREFIX}: $!";
|
|
}
|
|
|
|
exec "git", @ARGV or die "Can't exec git: $!";
|