summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2013-09-17 16:38:16 -0400
committerJames Moger <james.moger@gitblit.com>2013-09-17 17:05:19 -0400
commit9ae71a9720573a26e78de25d516c59813722e55e (patch)
tree9c11ded9f52eaeac365e6dc209d0a5cd5443e3c1 /src
parent35f55ae7e034275811fa68908215b48bbf9df965 (diff)
downloadgitblit-9ae71a9720573a26e78de25d516c59813722e55e.tar.gz
gitblit-9ae71a9720573a26e78de25d516c59813722e55e.zip
Documentation
Diffstat (limited to 'src')
-rw-r--r--src/main/distrib/data/gitblit.properties5
-rw-r--r--src/test/java/com/gitblit/tests/GitBlitSuite.java2
2 files changed, 5 insertions, 2 deletions
diff --git a/src/main/distrib/data/gitblit.properties b/src/main/distrib/data/gitblit.properties
index e4e71533..1fe1561f 100644
--- a/src/main/distrib/data/gitblit.properties
+++ b/src/main/distrib/data/gitblit.properties
@@ -191,13 +191,16 @@ git.userRepositoryPrefix = ~
# SINCE 1.3.0
git.defaultIncrementalPushTagPrefix = r
+# Controls creating a repository as --shared on Unix servers.
+#
# 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
+# SINCE 1.4.0
git.createRepositoriesShared = false
# Enable JGit-based garbage collection. (!!EXPERIMENTAL!!)
diff --git a/src/test/java/com/gitblit/tests/GitBlitSuite.java b/src/test/java/com/gitblit/tests/GitBlitSuite.java
index 5f03ec5a..c198e57a 100644
--- a/src/test/java/com/gitblit/tests/GitBlitSuite.java
+++ b/src/test/java/com/gitblit/tests/GitBlitSuite.java
@@ -61,7 +61,7 @@ import com.gitblit.utils.JGitUtils;
GitBlitTest.class, FederationTests.class, RpcTests.class, GitServletTest.class, GitDaemonTest.class,
GroovyScriptTest.class, LuceneExecutorTest.class, IssuesTest.class, RepositoryModelTest.class,
FanoutServiceTest.class, Issue0259Test.class, Issue0271Test.class, HtpasswdUserServiceTest.class,
- ModelUtilsTest.class })
+ ModelUtilsTest.class, JnaUtilsTest.class })
public class GitBlitSuite {
public static final File REPOSITORIES = new File("data/git");