James Moger
2013-09-17 9ae71a9720573a26e78de25d516c59813722e55e
Documentation
3 files modified
12 ■■■■ changed files
releases.moxie 5 ●●●● patch | view | raw | blame | history
src/main/distrib/data/gitblit.properties 5 ●●●● patch | view | raw | blame | history
src/test/java/com/gitblit/tests/GitBlitSuite.java 2 ●●● patch | view | raw | blame | history
releases.moxie
@@ -14,8 +14,11 @@
    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
src/main/distrib/data/gitblit.properties
@@ -191,13 +191,16 @@
# 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!!)
src/test/java/com/gitblit/tests/GitBlitSuite.java
@@ -61,7 +61,7 @@
        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");