I am trying to create a git server hook so that unformatted code would not be pushed. In my scenario I want to use clang format to check if the code is formatted correctly. if not the user will receive a message stating they need to format the code before pushing.
we are trying to implement a must format policy at work and this will simply be a safety net.
On the client side, you can look at
wangkuiyi/7379a242f0d4089eaa75
which is Gitpre-commit
hook that invokesclang-format
to reformat C/C++/Objective-C source code.That gives you an idea on how to write a server-side
pre-receive
hook, which will do the same and compare the resulting content with the original content.See more at "Git 'pre-receive' hook and 'git-clang-format' script to reliably reject pushes that violate code style conventions"