Browse Source

Documentation

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

+ 4
- 1
releases.moxie View File

changes: changes:
- Personal repository prefix (~) is now configurable (issue-265) - Personal repository prefix (~) is now configurable (issue-265)
- Updated default binary and Lucene ignore extensions - Updated default binary and Lucene ignore extensions
additions: ~
additions:
- Added setting to control creating a repository as --shared on Unix servers (issue-263)
dependencyChanges: ~ dependencyChanges: ~
settings:
- { name: 'git.createRepositoriesShared', defaultValue: 'false' }
contributors: contributors:
- James Moger - James Moger
- Robin Rosenberg - Robin Rosenberg

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

# SINCE 1.3.0 # SINCE 1.3.0
git.defaultIncrementalPushTagPrefix = r git.defaultIncrementalPushTagPrefix = r
# Controls creating a repository as --shared on Unix servers.
#
# In an Unix environment where mixed access methods exist for shared repositories, # 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 # 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). # 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 # Valid values are the values available for the '--shared' option. The the manual
# page for 'git init' for more information on shared repositories. # page for 'git init' for more information on shared repositories.
# #
# SINCE 1.3.2
# SINCE 1.4.0
git.createRepositoriesShared = false git.createRepositoriesShared = false
# Enable JGit-based garbage collection. (!!EXPERIMENTAL!!) # Enable JGit-based garbage collection. (!!EXPERIMENTAL!!)

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

GitBlitTest.class, FederationTests.class, RpcTests.class, GitServletTest.class, GitDaemonTest.class, GitBlitTest.class, FederationTests.class, RpcTests.class, GitServletTest.class, GitDaemonTest.class,
GroovyScriptTest.class, LuceneExecutorTest.class, IssuesTest.class, RepositoryModelTest.class, GroovyScriptTest.class, LuceneExecutorTest.class, IssuesTest.class, RepositoryModelTest.class,
FanoutServiceTest.class, Issue0259Test.class, Issue0271Test.class, HtpasswdUserServiceTest.class, FanoutServiceTest.class, Issue0259Test.class, Issue0271Test.class, HtpasswdUserServiceTest.class,
ModelUtilsTest.class })
ModelUtilsTest.class, JnaUtilsTest.class })
public class GitBlitSuite { public class GitBlitSuite {
public static final File REPOSITORIES = new File("data/git"); public static final File REPOSITORIES = new File("data/git");

Loading…
Cancel
Save