From 56c549e384b1a648c77bbd09a2cc77976e8a64de Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Tue, 24 May 2011 17:39:55 -0400
Subject: [PATCH] Documentation.
---
distrib/gitblit.properties | 21 ++++++++++++++++++---
1 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties
index e13b60c..e2ddce6 100644
--- a/distrib/gitblit.properties
+++ b/distrib/gitblit.properties
@@ -17,8 +17,10 @@
# e.g. /libraries/mylibrary.git
git.nestedRepositories = true
-# The root clone url
-git.cloneUrl = https://localhost/git/
+# Show other URLs on the summary page for accessing your git repositories
+# Use spaces to separate urls. {0} is the token for the repository name.
+# git.otherUrls = ssh://localhost/git/{0} git://localhost/git/{0}
+git.otherUrls =
#
# Authentication Settings
@@ -34,7 +36,7 @@
realm.realmFile = users.properties
# How to store passwords.
-# Valid values are plain, md5 or crypt (unix style). Default is md5.
+# Valid values are plain or md5. Default is md5.
realm.passwordStorage = md5
# Minimum valid length for a plain text password.
@@ -53,6 +55,9 @@
# If web.authenticate=false, any user can execute the aforementioned functions.
web.allowAdministration = true
+# Allow dyanamic zip downloads.
+web.allowZipDownloads = true
+
# This is the message display above the repositories table.
# This can point to a file with Markdown content.
# Specifying "gitblit" uses the internal welcome message.
@@ -66,6 +71,16 @@
web.datestampShortFormat = yyyy-MM-dd
web.datetimestampLongFormat = EEEE, MMMM d, yyyy h:mm a z
+# Choose how to present the repositories list.
+# grouped = group nested/subfolder repositories together (no sorting)
+# flat = flat list of repositories (sorting allowed)
+web.repositoryListType = grouped
+
+# If using a grouped repository list and there are repositories at the
+# root level of your repositories folder, you may specify the displayed
+# group name with this setting. This value is only used for web presentation.
+web.repositoryRootGroupName = main
+
# Choose the diff presentation style: gitblt, gitweb, or plain
web.diffStyle = gitblit
--
Gitblit v1.9.1