Skip to main content

Git pre-receive hook to check commits

Project description

https://badge.fury.io/py/sc-githooks.svg PyPI - Python Version

Git Pre-Receive Hook to Validate Commits

This project provides a Git pre-receive hook to validate pushed commits on the Git server side. The hook avoids all issues by rejecting any commit not matching the rules to get in to the repository in the first place.

Installation

It is possible to install the tool with pip:

pip install sc-githooks

Link the script to hooks/pre-receive on you Git repositories on your Git server:

ln -s sc-pre-receive /home/git/repositories/myproject.git/hooks/pre-receive

If you want all projects to be checked, then you need to do following steps:

  1. On the GitLab server, navigate to the configured custom hook directory. The default is in the gitlab-shell directory.

  2. The gitlab-shell hook directory for Omnibus installation is usually /opt/gitlab/embedded/service/gitlab-shell/hooks.

  3. Create a new directory in this location. Depending on your hook, it will be either a pre-receive.d, post-receive.d, or update.d directory.

  4. Inside this new directory, add your hook like this:

    cd /opt/gitlab/embedded/service/gitlab-shell/hooks
    mkdir pre-receive.d
    cd pre-receive.d
    ln -s /usr/local/bin/sc-pre-receive pre-receive

Features

  • Validate received commits one by one not just the last one

  • Only validate added or modified files on the commits

  • Report all problems before failing

  • Check for duplicate commit summaries

  • Check for misleading merge commits

  • Validate committer and author timestamps

  • Validate committer and author names and email addresses

  • Check commit message best practices (80 lines, first line summary…)

  • Check commit summary formatting

  • Validate commit tags against a list [BUGFIX], [FEATURE], [WIP]

  • Check for changed file paths

  • Accept commits tagged as [HOTFIX], [MESS], [TEMP], or [WIP] with issues

  • Check binary files

  • Check file size

  • Check file extensions

Here is an example problem output:

=== CheckDuplicateCommitSummaries on CommitList ===
ERROR: summary "Add nagios check for early expiration of licenses" duplicated 2 times

=== CheckCommitSummary on 31d0f6b ===
WARNING: summary longer than 72 characters

=== CheckCommitSummary on 6bded65 ===
WARNING: past tense used on summary

=== CheckCommitMessage on 6fdbc00 ===
WARNING: line 7 is longer than 80
WARNING: line 9 is longer than 80

Configuration

First, make sure /var/opt/sc directory exists, if not create this directory and make sure current user has the right to create files in this directory.

You can copy default.yml to /var/opt/sc/.sc-githooks/production.yml to initialize the production configuration.

The default configuration file looks like this:

dev:
  # Whether this program is running in development mode
  dev_mode: False

commit_check:
  # Whether commit check is enabled
  enabled: True
  # The warning threshold of the length of commit summary
  commit_summary_max_length: 50
  # The threshold of the max length of commit summary and other commit line
  commit_line_max_length: 80

  # A list of illegal suffixes which cannot be committed to git repository
  binary_file_illegal_suffixes: "jar"
  # A list of legal binary file names which can be committed to git repository
  legal_binary_filenames: "gradle-wrapper.jar,maven-wrapper.jar"

  # The max size of a file that can be committed to git repository
  commit_file_max_size: 5242880

Pros and Cons of Pre-receive Hook

Continuous Integration Server

A continuous integration server can run such checks with the many other things it is doing. Moving this job from it has many benefits:

  • Synchronous feedback

  • More efficient

  • Disallow any commit violating the rules

Pre-commit Hook

Even though, pre-receive hook gives later feedback than pre-commit hook, it has many advantages over it:

  • No client side configuration

  • Plugins has to be installed only once to the Git server

  • Everybody gets the same checks

  • Enforcement, nobody can skip the checks

  • Commit checking (pre-commit hook only gets what is changed in the commit)

IDE Integration

The same advantages compared to pre-commit hooks applies to IDE integration. Though, IDE integration gives much sooner and nicer feedback, so it is still a good idea, even with the pre-receive hook.

Dependencies

Testing

I found it useful to check what the script would have complained if it had been active on different Git repositories. You can run a command like this to test this inside a Git repository against last 50 commits:

git log --reverse --oneline HEAD~50..HEAD |
    sed 's:\([^ ]*\) .*:\1 \1 refs/heads/master:' |
    python ../sc-githooks/sc-pre-receive

License

The script is released under the MIT License. The MIT License is registered with and approved by the Open Source Initiative [1].

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xt-githooks-0.1.0.1.tar.gz (18.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

xt_githooks-0.1.0.1-py3-none-any.whl (21.2 kB view details)

Uploaded Python 3

File details

Details for the file xt-githooks-0.1.0.1.tar.gz.

File metadata

  • Download URL: xt-githooks-0.1.0.1.tar.gz
  • Upload date:
  • Size: 18.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.24.0 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.3

File hashes

Hashes for xt-githooks-0.1.0.1.tar.gz
Algorithm Hash digest
SHA256 355d61995bea70b5708cbfb696f9f936f168e052d4ddb65058695084b5ba0718
MD5 a3d3316321d6ae975680811c979ed2c6
BLAKE2b-256 b8a46dc6653b078ad4bafc2ff4c0a16b9c34098195e4135f9a7c8608412f7b1b

See more details on using hashes here.

File details

Details for the file xt_githooks-0.1.0.1-py3-none-any.whl.

File metadata

  • Download URL: xt_githooks-0.1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 21.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.24.0 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.3

File hashes

Hashes for xt_githooks-0.1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1c2b5e53d661404930cd487ff629a162d97a4423d6e2c169f293f62ea21a41e8
MD5 3cf13cd95e72df689ff084a56cb737e9
BLAKE2b-256 20a9891c0b70f085ca29258793d5971220130284b6d4643265c5398a08c58e85

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page