One of the things I keep in my open novel in GitHub is a list of words I would like to set automatically the first line, which is the number of words in the dictionary. My first option is to write a pre-commit hook that reads the file, counts the words, rewrites the first line and writes it back again. Here's the code
PRE_COMMIT {
my ($git) = @_;
my $branch = $git->command(qw/rev-parse --abbrev-ref HEAD/);
say "Pre-commit hook in $branch";
if ( $branch =~ /master/ ) {
my $changed = $git->command(qw/show --name-status/);
my @changed_files = ($changed =~ /\s\w\s+(\S+)/g);
if ( $words ~~ @changed_files ) {
my @words_content = read_file( $words );
say "I have $#words_content words";
$words_content[0] = "$#words_content\n";
write_file( $words, @words_content );
}
}
};
However, since the file has already been staged, I get this error
error: Your local changes to the following files would be overwritten by checkout: text/words.dic Please, commit your changes or stash them before you can switch branches. Aborting
Might it be better to do it as a post-commit hook and have it changed for the next commit? Or do something completely different altogether? The general question is: if you want to process and change the contents of a file during commit, what's the proper way of doing it?
The actual commit stuck in by
git commit
is whatever is in the index once the pre-commit hook finishes. This means that you can change files in the pre-commit hook, as long as yougit add
them too.Here's my example pre-commit hook, modified from the .sample:
and then:
But note a minor flaw (won't apply to your case):
Basically, because the pre-commit hook updates and
git add
s, the file keeps incrementing even though I'm not actually doing the commit, here.It turns out you can run "hooks" - they are actually handled by another mecanism - when staging files (at
git add
time) :https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes#_keyword_expansion
(scroll down a bit to the "smudge/clean" diagram)
Here is what I understood :
edit the
.gitattributes
, and create rules for the files which should trigger a dictionary update :novel.txt updateDict
Then, tell Git what the "updateDict" filter does on smudge (git checkout) and clean (git add) :
$ git config --global filter.updateDict.clean countWords.script
$ git config --global filter.updateDict.smudge cat