Code::TidyAll::Git::Prereceive
Git pre-receive hook that requires files to be tidyall'd
- Provided by: libcode-tidyall-perl (Version: 0.32~dfsg-1)
- Report a bug
Git pre-receive hook that requires files to be tidyall'd
version 0.32
In .git/hooks/pre-receive:
#!/usr/bin/perl
use Code::TidyAll::Git::Prereceive;
use strict;
use warnings;
Code::TidyAll::Git::Prereceive->check();
# or
my $input = do { local $/; <STDIN> };
# Do other things with $input here
my $hook = Code::TidyAll::Git::Prereceive->new();
if (my $error = $hook->check_input($input)) {
die $error;
}
This module implements a Git pre-receive hook <http://git-scm.com/book/en/Customizing-Git-Git-Hooks> that checks if all pushed files are tidied and valid according to tidyall, and rejects the push if not.
This is typically used to validate pushes from multiple developers to a shared repo, possibly on a remote server.
See also Code::TidyAll::Git::Precommit, which operates locally.
% git push
Counting objects: 9, done.
...
remote: [checked] lib/CHI/Util.pm
remote: Code before strictures are enabled on line 13 [TestingAndDebugging::RequireUseStrict]
remote:
remote: 1 file did not pass tidyall check
To ...
! [remote rejected] master -> master (pre-receive hook declined)
The configuration file ("tidyall.ini" or ".tidyallrc") must be checked into git in the repo root directory, i.e. next to the .git directory.
In an emergency the hook can be bypassed by pushing the exact same set of commits 3 consecutive times (configurable via "allow_repeated_push"):
% git push
...
remote: 1 file did not pass tidyall check
% git push
...
*** Identical push seen 2 times
remote: 1 file did not pass tidyall check
% git push
...
*** Identical push seen 3 times
*** Allowing push to proceed despite errors
Or you can disable the hook in the repo being pushed to, e.g. by renaming .git/hooks/pre-receive.
If an unexpected runtime error occurs, it is reported but by default the commit will be allowed through (see "reject_on_error").
Passes mode = "commit" by default; see modes.
Key/value parameters:
extra_conf_files => ['perlcriticrc', 'perltidyrc']
These files will be pulled out of the repo alongside the main configuration file. If you don't list them here then you'll get errors like 'cannot find perlcriticrc' when the hook runs.
mode => 'commit',
quiet => 1,
or pass additional options.
This hook will ignore any files with only a single line of content (no newlines), as an imperfect way of filtering out symlinks.
Code::TidyAll
This software is copyright (c) 2011 - 2015 by Jonathan Swartz.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.