Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create global pre-commit hooks for entire team

Tags:

git

githooks

How can I create a global pre-commit hook that is available for everyone in the team to use? Basically, I want that anytime someone clones the remote repository he should get this global pre-commit hook by default.

I came across this change default git hooks, Git commit hooks - global settings and this https://coderwall.com/p/jp7d5q where it suggests to create a template directory having common hooks and set init.templatedir to point to this directory. However this is useful only for setting default hooks for yourself on your own machine. How can the pre-commit hook be made available to entire team by default?

like image 828
phoenix Avatar asked Jul 31 '14 15:07

phoenix


People also ask

How do I create a pre- commit hook in Git?

Create a .pre-commit-config.yaml file within your project. This file contains the pre-commit hooks you want to run every time before you commit. It looks like this: pre-commit will look in those two repositories with the specified git tags for a file called .pre-commit-hooks.yaml.

What are pre-commit hooks in Python?

pre-commit hooks are a mechanism of the version control system git. They let you execute code right before the commit. Confusingly, there is also a Python package called pre-commit which allows you to create and use pre-commit hooks with a way simpler interface. The Python package has a plugin-system to create git pre-commit hooks automatically.

How to run a pre-commit test hook locally?

You can use pre-commit to run this hook locally. Go to the test repository we created to test the hook. pre-commit try-repo is the command and the switch. ../pre-commit-test-hook is the path to your pre-commit-test-hook repository on your file system. This path depends on where you have created these repositories. test-hook is the ID of the hook.

Are there any auto-formatters with pre-commit hooks?

There are autoformatters with pre-commit hooks for many languages: Prettier: HTML, CSS, JavaScript, GraphQL, and many more. Clang-format: C, C++, Java, JavaScript, Objective-C, Protobuf, C# pyupgrade runs over your Python code and automatically changes old-style syntax to new-style syntax. Just have a look at some examples: Do you want it?


1 Answers

How can the pre-commit hook be made available to entire team by default?

It can not, as I explained in "Difference between pre-push and pre-receive hook in git?"

And from a security standpoint, that'd be really kind of scary - no one should have the ability to force me to execute certain scripts whenever I run certain git commands

So:

  • using a shared template folder is one way, but supposed all users do know about the --template option of git clone.
  • adding the hooks in a dedicated folder of the repo itself is another, but each user has to decide to symlink those script to their own hooks.

But in any case, remember that a git commit --no-verify would bypass the pre-commit hook anyway.

That is why a server-side hook is safer (as discussed in "Difference between pre-push and pre-receive hook in git?") and will catch all bad commits pushed to a blessed repo.

That is not say a pre-commit hook is useless: if you can convince the users to activate it, it will help catch error sooner, which is a good thing.
But it cannot be enforced "automatically".

like image 117
VonC Avatar answered Oct 05 '22 07:10

VonC