Browse Source

Documentation

tags/v1.4.0
James Moger 10 years ago
parent
commit
9ae71a9720

+ 4
- 1
releases.moxie View 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

+ 4
- 1
src/main/distrib/data/gitblit.properties View File

@@ -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!!)

+ 1
- 1
src/test/java/com/gitblit/tests/GitBlitSuite.java View File

@@ -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");

Loading…
Cancel
Save