diff options
author | Florian Zschocke <florian.zschocke@cycos.com> | 2013-08-22 11:07:25 +0200 |
---|---|---|
committer | Florian Zschocke <florian.zschocke@cycos.com> | 2013-08-26 12:30:53 +0200 |
commit | df75fa3a0961fc6a539209d5f13788d64b109a34 (patch) | |
tree | 5df73759b4bd506ea825e31c6f56884826c0b624 /src/main/distrib/data | |
parent | 0a16a66452e425a19755c6b7a629c8ff0c7ade50 (diff) | |
download | gitblit-df75fa3a0961fc6a539209d5f13788d64b109a34.tar.gz gitblit-df75fa3a0961fc6a539209d5f13788d64b109a34.zip |
Add new configuration setting 'git.userRepositoryPrefix'.
Diffstat (limited to 'src/main/distrib/data')
-rw-r--r-- | src/main/distrib/data/gitblit.properties | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/distrib/data/gitblit.properties b/src/main/distrib/data/gitblit.properties index 9be7f645..0837cde9 100644 --- a/src/main/distrib/data/gitblit.properties +++ b/src/main/distrib/data/gitblit.properties @@ -163,6 +163,17 @@ git.defaultAccessRestriction = NONE # SINCE 1.1.0
git.defaultAuthorizationControl = NAMED
+# The prefix for a users personal repository directory.
+# Personal user repositories are created in this directory, named by the user name
+# prefixed with the userRepositoeryPrefix. For eaxmple, a user 'john' would have his
+# personal repositories in the directory '~john'.
+# Cannot be an empty string. Also, absolute paths are changed to relative paths by
+# removing the first directory separator.
+#
+# RESTART REQUIRED
+# SINCE 1.3.2
+git.userRepositoryPrefix = "~"
+
# The default incremental push tag prefix. Tag prefix applied to a repository
# that has automatic push tags enabled and does not specify a custom tag prefix.
#
|