mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Allow pre-receive hook customization
This hook can be used for example to reject too large commits and it is executed before "update" hook, used exclusively by Gogs to update its state. https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks
This commit is contained in:
parent
14080dd61d
commit
3df5dcc1dc
1 changed files with 1 additions and 0 deletions
|
@ -27,6 +27,7 @@ var hookNames = []string{
|
|||
"post-checkout",
|
||||
"post-merge",
|
||||
"pre-push",
|
||||
"pre-receive",
|
||||
// "update",
|
||||
"post-receive",
|
||||
"post-update",
|
||||
|
|
Loading…
Reference in a new issue