diff options
author | Unknwon <u@gogs.io> | 2015-11-24 16:30:47 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-11-24 16:30:47 -0500 |
commit | 56c66ee486b4b8d544201662de62a23f36e6a069 (patch) | |
tree | 74f3032cc8b3a55596575707e581d56990122b22 | |
parent | 21ad4bf0fe461b7bf04384dcc09e62f7e52c9803 (diff) | |
download | gitea-56c66ee486b4b8d544201662de62a23f36e6a069.tar.gz gitea-56c66ee486b4b8d544201662de62a23f36e6a069.zip |
#2008 more supported git hooks
-rw-r--r-- | gogs.go | 2 | ||||
-rw-r--r-- | modules/git/hooks.go | 14 | ||||
-rw-r--r-- | templates/.VERSION | 2 |
3 files changed, 13 insertions, 5 deletions
@@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.21.1123 Beta" +const APP_VER = "0.7.21.1124 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/modules/git/hooks.go b/modules/git/hooks.go index 6a1e09a9be..300a100532 100644 --- a/modules/git/hooks.go +++ b/modules/git/hooks.go @@ -16,15 +16,23 @@ import ( // hookNames is a list of Git hooks' name that are supported. var hookNames = []string{ - "pre-applypatch", "applypatch-msg", + "pre-applypatch", + "post-applypatch", + "pre-commit", "prepare-commit-msg", "commit-msg", - "pre-commit", - "pre-rebase", "post-commit", + "pre-rebase", + "post-checkout", + "post-merge", + "pre-push", + // "update", "post-receive", "post-update", + "push-to-checkout", + "pre-auto-gc", + "post-rewrite", } var ( diff --git a/templates/.VERSION b/templates/.VERSION index 407198f7cc..5ca4043c1f 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.21.1123 Beta
\ No newline at end of file +0.7.21.1124 Beta
\ No newline at end of file |