]> source.dussan.org Git - gitblit.git/commitdiff
Documentation
authorJames Moger <james.moger@gitblit.com>
Tue, 17 Sep 2013 20:38:16 +0000 (16:38 -0400)
committerJames Moger <james.moger@gitblit.com>
Tue, 17 Sep 2013 21:05:19 +0000 (17:05 -0400)
releases.moxie
src/main/distrib/data/gitblit.properties
src/test/java/com/gitblit/tests/GitBlitSuite.java

index 5b061fe229002b2582eb5029dc654caf39530bbc..53ad8b5354fd398bfaabb17914e7e0aa879d5d7f 100644 (file)
@@ -14,8 +14,11 @@ r20: {
     changes:
        - Personal repository prefix (~) is now configurable (issue-265)
        - Updated default binary and Lucene ignore extensions
-    additions: ~
+    additions:
+       - Added setting to control creating a repository as --shared on Unix servers (issue-263)
     dependencyChanges: ~
+    settings:
+    - { name: 'git.createRepositoriesShared', defaultValue: 'false' }
     contributors:
        - James Moger
        - Robin Rosenberg
index e4e715332b45b6493bba3249c13476fc69eb917a..1fe1561fedd7d133b5f61e38e7b966cecf15f0c5 100644 (file)
@@ -191,13 +191,16 @@ git.userRepositoryPrefix = ~
 # SINCE 1.3.0\r
 git.defaultIncrementalPushTagPrefix = r\r
 \r
+# Controls creating a repository as --shared on Unix servers.\r
+#\r
 # In an Unix environment where mixed access methods exist for shared repositories,\r
 # the repository should be created with 'git init --shared' to make sure that\r
 # it can be accessed e.g. via ssh (user git) and http (user www-data).\r
+#\r
 # Valid values are the values available for the '--shared' option. The the manual\r
 # page for 'git init' for more information on shared repositories.\r
 #\r
-# SINCE 1.3.2\r
+# SINCE 1.4.0\r
 git.createRepositoriesShared = false\r
 \r
 # Enable JGit-based garbage collection. (!!EXPERIMENTAL!!)\r
index 5f03ec5a929c1be7c61e79ef440939e5a69efea2..c198e57a24c6411f2813648bdd3f20f7b9231faa 100644 (file)
@@ -61,7 +61,7 @@ import com.gitblit.utils.JGitUtils;
                GitBlitTest.class, FederationTests.class, RpcTests.class, GitServletTest.class, GitDaemonTest.class,\r
                GroovyScriptTest.class, LuceneExecutorTest.class, IssuesTest.class, RepositoryModelTest.class,\r
                FanoutServiceTest.class, Issue0259Test.class, Issue0271Test.class, HtpasswdUserServiceTest.class,\r
-               ModelUtilsTest.class })\r
+               ModelUtilsTest.class, JnaUtilsTest.class })\r
 public class GitBlitSuite {\r
 \r
        public static final File REPOSITORIES = new File("data/git");\r