summaryrefslogtreecommitdiffstats
path: root/distrib
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2011-09-26 22:57:31 -0400
committerJames Moger <james.moger@gitblit.com>2011-09-26 22:57:31 -0400
commitb083f5a956e69715efaaf95b810b02dec687c82e (patch)
treeb164ca80194febe9c6beb19d482633d9638c94db /distrib
parent78753bc22f140f863aa3fe56b1c59699ca3e2fa8 (diff)
downloadgitblit-b083f5a956e69715efaaf95b810b02dec687c82e.tar.gz
gitblit-b083f5a956e69715efaaf95b810b02dec687c82e.zip
Documentation.
Diffstat (limited to 'distrib')
-rw-r--r--distrib/federation.properties22
-rw-r--r--distrib/gitblit.properties7
2 files changed, 25 insertions, 4 deletions
diff --git a/distrib/federation.properties b/distrib/federation.properties
index e7e17f7c..c762b45c 100644
--- a/distrib/federation.properties
+++ b/distrib/federation.properties
@@ -37,12 +37,26 @@ federation.name =
# The shortest frequency allowed is every 5 minutes
# Decimal frequency values are cast to integers
# Frequency values may be specified in mins, hours, or days
-# Values that can not be parsed default to *federation.defaultFrequency*
+# Values that can not be parsed or are unspecified default to *federation.defaultFrequency*
#
# folder:
-# if blank, the folder is *git.repositoriesFolder*
+# if unspecified, the folder is *git.repositoriesFolder*
# if specified, the folder is relative to *git.repositoriesFolder*
#
+# bare:
+# if true, each repository will be created as a *bare* repository and will not
+# have a working directory.
+#
+# if false, each repository will be created as a normal repository suitable
+# for local work.
+#
+# mirror:
+# if true, each repository HEAD is reset to *origin/master* after each pull.
+# The repository will be flagged *isFrozen* after the initial clone.
+#
+# if false, each repository HEAD will point to the FETCH_HEAD of the initial
+# clone from the origin until pushed to or otherwise manipulated.
+#
# mergeAccounts:
# if true, remote accounts and their permissions are merged into your
# users.properties file
@@ -52,7 +66,7 @@ federation.name =
# notified by email of pull failures
#
# include and exclude:
-# space-separated list of repositories to include or exclude from pull
+# Space-delimited list of repositories to include or exclude from pull
# may be * wildcard to include or exclude all
# may use fuzzy match (e.g. org.eclipse.*)
@@ -64,6 +78,6 @@ federation.name =
#federation.example1.token = 6f3b8a24bf970f17289b234284c94f43eb42f0e4
#federation.example1.frequency = 120 mins
#federation.example1.folder =
-#federation.example1.bare = true
+#federation.example1.bare = true
#federation.example1.mirror = true
#federation.example1.mergeAccounts = true
diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties
index e8acfa93..5493b25b 100644
--- a/distrib/gitblit.properties
+++ b/distrib/gitblit.properties
@@ -391,6 +391,13 @@ federation.sets =
# if unspecified, the folder is *git.repositoriesFolder*
# if specified, the folder is relative to *git.repositoriesFolder*
#
+# bare:
+# if true, each repository will be created as a *bare* repository and will not
+# have a working directory.
+#
+# if false, each repository will be created as a normal repository suitable
+# for local work.
+#
# mirror:
# if true, each repository HEAD is reset to *origin/master* after each pull.
# The repository will be flagged *isFrozen* after the initial clone.