diff options
author | James Moger <james.moger@gitblit.com> | 2012-08-01 09:48:06 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-08-01 09:48:06 -0400 |
commit | 65f55eee1c41a9cdfec96dc4310efcc6e57df97f (patch) | |
tree | bd5d6d65af03f750f3b984b5ccf7f56cb95d66fd /distrib/gitblit.properties | |
parent | 874be0d933eb52d548a07b67d112a0975e900b14 (diff) | |
download | gitblit-65f55eee1c41a9cdfec96dc4310efcc6e57df97f.tar.gz gitblit-65f55eee1c41a9cdfec96dc4310efcc6e57df97f.zip |
Add recursion depth control for repository search (issue 103)
Diffstat (limited to 'distrib/gitblit.properties')
-rw-r--r-- | distrib/gitblit.properties | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties index 4c4372ea..f06aaef4 100644 --- a/distrib/gitblit.properties +++ b/distrib/gitblit.properties @@ -21,6 +21,12 @@ git.repositoriesFolder = git # SINCE 0.5.0
git.searchRepositoriesSubfolders = true
+# Maximum number of folders to recurse into when searching for repositories.
+# The default value, -1, disables depth limits.
+#
+# SINCE 1.0.1
+git.searchRecursionDepth = -1
+
# Allow push/pull over http/https with JGit servlet.
# If you do NOT want to allow Git clients to clone/push to Gitblit set this
# to false. You might want to do this if you are only using ssh:// or git://.
|