The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "dist:Git-Hooks Git"

Git::Hooks - Framework for implementing Git (and Gerrit) hooks River stage one • 5 direct dependents • 5 total dependents

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

Git::Hooks River stage one • 5 direct dependents • 5 total dependents

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

Git::Message - A Git commit message River stage one • 5 direct dependents • 5 total dependents

This class represents a Git commit message. Generally speaking, a commit message can be any string whatsoever. However, the Git community came up with a few conventions for how to best format a message and this class embraces those conventions making...

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

Git::Hooks::Test - Git::Hooks testing utilities River stage one • 5 direct dependents • 5 total dependents

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

Git::Hooks::Notify - Git::Hooks plugin to notify users via email River stage one • 5 direct dependents • 5 total dependents

This Git::Hooks plugin hooks itself to the hooks below to notify users via email about pushed commits affecting specific files in the repository. * post-receive This hook is invoked once in the remote repository after a successful "git push". It's us...

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

Git::Hooks::CheckLog - Git::Hooks plugin to enforce commit log policies River stage one • 5 direct dependents • 5 total dependents

This Git::Hooks plugin hooks itself to the hooks below to enforce policies on the commit log messages. * commit-msg, applypatch-msg This hook is invoked during the commit, to check if the commit log message complies. * update This hook is invoked mul...

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

Git::Hooks::CheckFile - Git::Hooks plugin for checking files River stage one • 5 direct dependents • 5 total dependents

This Git::Hooks plugin hooks itself to the hooks below to check if the names and contents of files added to or modified in the repository meet specified constraints. If they don't, the commit/push is aborted. * pre-applypatch * pre-commit * update * ...

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

Git::Hooks::CheckJira - Git::Hooks plugin which requires citation of Jira issues in commit messages River stage one • 5 direct dependents • 5 total dependents

This Git::Hooks plugin hooks itself to the hooks below to guarantee that every commit message cites at least one valid Jira issue key in its log message, so that you can be certain that every change has a proper change request (a.k.a. ticket) open. *...

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

Git::Hooks::CheckDiff - Git::Hooks plugin to enforce commit policies River stage one • 5 direct dependents • 5 total dependents

This Git::Hooks plugin hooks itself to the hooks below to check commit diffs. * pre-commit, pre-applypatch This hook is invoked before a commit is made to check the diffs that it would record. * update This hook is invoked multiple times in the remot...

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

Git::Hooks::PrepareLog - Git::Hooks plugin to prepare commit messages before being edited River stage one • 5 direct dependents • 5 total dependents

This Git::Hooks plugin hooks itself to the "prepare-commit-msg". It's invoked during a Git commit in order to prepare the commit log message before invoking the editor. It should be used to pre-format or to insert automatic information in the message...

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

Git::Hooks::CheckCommit - Git::Hooks plugin to enforce commit policies River stage one • 5 direct dependents • 5 total dependents

This Git::Hooks plugin hooks itself to the hooks below to enforce commit policies. * pre-commit, pre-applypatch This hook is invoked before a commit is made to check the author and committer identities. * post-commit, post-applypatch This hook is inv...

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

Git::Hooks::CheckRewrite - Git::Hooks plugin for checking against unsafe rewrites River stage one • 5 direct dependents • 5 total dependents

This Git::Hooks plugin hooks itself to the pre-rebase hook to guarantee that it is safe in the sense that no rewritten commit is reachable by other branch than the one being rebased. It also hooks itself to the pre-commit and the post-commit hooks to...

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

Git::Hooks::GerritChangeId - Git::Hooks plugin to insert a Change-Id in a commit message River stage one • 5 direct dependents • 5 total dependents

This Git::Hooks plugin hooks itself to the "commit-msg" and the "applypatch-msg" hooks. It is a re-implementation of Gerrit's official commit-msg hook for inserting change-ids in git commit messages. It's does not produce the same "Change-Id" for the...

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

Git::Hooks::CheckReference - Git::Hooks plugin for checking references River stage one • 5 direct dependents • 5 total dependents

This Git::Hooks plugin hooks itself to the hooks below to check if the names of references added to or renamed in the repository meet specified constraints. If they don't, the commit/push is aborted. * update * pre-receive * ref-update * commit-recei...

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

Git::Hooks::CheckWhitespace - Git::Hooks plugin for checking whitespace errors River stage one • 5 direct dependents • 5 total dependents

This Git::Hooks plugin hooks itself to the hooks below to check if the contents of files added to or modified in the repository have whitespace errors as detected by "git diff --check" command. If they don't, the commit/push is aborted. * pre-applypa...

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

Git::Repository::Plugin::GitHooks - A Git::Repository plugin with some goodies for hook developers River stage one • 5 direct dependents • 5 total dependents

This module adds several methods useful to implement Git hooks to Git::Repository. In particular, it is used by the standard hooks implemented by the "Git::Hooks" framework....

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

githooks.pl - Git::Hooks driver script River stage one • 5 direct dependents • 5 total dependents

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC

find-secret-leakage-in-git-diff.pl - find secrets leaking in a Git repository River stage one • 5 direct dependents • 5 total dependents

This script reads from a FILE or from STDIN the output of a git-diff command containing a patch and tries to detect secrets in the lines being added. It's intended to be invoked by the Git::Hooks::CheckDiff plugin, which feds it the output of either ...

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC
18 results (0.035 seconds)