diff options
author | James Moger <james.moger@gitblit.com> | 2011-12-19 17:58:43 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-12-19 17:58:43 -0500 |
commit | 6cc1d4cf3605719af3f9a37ee09cb02519be3571 (patch) | |
tree | 297ba0d726a080985e8122301d12ee1fe244039d /distrib | |
parent | a50c4afdde37845b94b3545029ed9aac5796fdf7 (diff) | |
download | gitblit-6cc1d4cf3605719af3f9a37ee09cb02519be3571.tar.gz gitblit-6cc1d4cf3605719af3f9a37ee09cb02519be3571.zip |
Server-side hook script selection. Documentation.
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/gitblit.properties | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties index ebaa29a6..d51dfb7e 100644 --- a/distrib/gitblit.properties +++ b/distrib/gitblit.properties @@ -36,6 +36,7 @@ git.enableGitServlet = true # Use forward slashes even on Windows!!
# e.g. c:/groovy
#
+# RESTART REQUIRED
# SINCE 0.8.0
groovy.scriptsFolder = groovy
@@ -46,6 +47,9 @@ groovy.scriptsFolder = groovy # push in this script based on the repository and branch the push is attempting
# to change.
#
+# Script names are case-sensitive on case-sensitive file systems. You may omit
+# the traditional ".groovy" from this list if your file extension is ".groovy"
+#
# NOTE:
# These scripts are only executed when pushing to *Gitblit*, not to other Git
# tooling you may be using. Also note that these scripts are shared between
@@ -54,6 +58,7 @@ groovy.scriptsFolder = groovy # *repository* variable.
#
# SPACE-DELIMITED
+# CASE-SENSITIVE
# SINCE 0.8.0
groovy.preReceiveScripts =
@@ -62,6 +67,9 @@ groovy.preReceiveScripts = # These scripts execute AFTER an incoming push has been applied to a repository.
# You might trigger a continuous-integration build here or send a notification.
#
+# Script names are case-sensitive on case-sensitive file systems. You may omit
+# the traditional ".groovy" from this list if your file extension is ".groovy"
+#
# NOTE:
# These scripts are only executed when pushing to *Gitblit*, not to other Git
# tooling you may be using. Also note that these scripts are shared between
@@ -70,6 +78,7 @@ groovy.preReceiveScripts = # *repository* variable.
#
# SPACE-DELIMITED
+# CASE-SENSITIVE
# SINCE 0.8.0
groovy.postReceiveScripts =
|