diff options
author | James Moger <james.moger@gitblit.com> | 2013-09-17 17:05:00 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2013-09-17 17:05:00 -0400 |
commit | 35f55ae7e034275811fa68908215b48bbf9df965 (patch) | |
tree | d8bd79fc7a7bc9d2d0b047c655f7e99f50fe303e /src/main/distrib | |
parent | bb6b148bfc2d4a22b4fd3bdbafebadccaccf6661 (diff) | |
parent | b724448b589d60a9a7dda60cf30741048c98e199 (diff) | |
download | gitblit-35f55ae7e034275811fa68908215b48bbf9df965.tar.gz gitblit-35f55ae7e034275811fa68908215b48bbf9df965.zip |
Merge branch 'init-shared' of https://github.com/fzs/gitblit into prefixes
Diffstat (limited to 'src/main/distrib')
-rw-r--r-- | src/main/distrib/data/gitblit.properties | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/distrib/data/gitblit.properties b/src/main/distrib/data/gitblit.properties index 665a90e7..e4e71533 100644 --- a/src/main/distrib/data/gitblit.properties +++ b/src/main/distrib/data/gitblit.properties @@ -191,6 +191,15 @@ git.userRepositoryPrefix = ~ # SINCE 1.3.0
git.defaultIncrementalPushTagPrefix = r
+# In an Unix environment where mixed access methods exist for shared repositories,
+# the repository should be created with 'git init --shared' to make sure that
+# it can be accessed e.g. via ssh (user git) and http (user www-data).
+# Valid values are the values available for the '--shared' option. The the manual
+# page for 'git init' for more information on shared repositories.
+#
+# SINCE 1.3.2
+git.createRepositoriesShared = false
+
# Enable JGit-based garbage collection. (!!EXPERIMENTAL!!)
#
# USE AT YOUR OWN RISK!
|