diff options
author | James Moger <james.moger@gitblit.com> | 2011-07-11 16:29:20 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-07-11 16:29:20 -0400 |
commit | 5c284113a1a458db0d3440de351034503b3d52b3 (patch) | |
tree | cb8744eaf3c27194632a579785daa96be66a50cd /distrib/gitblit.properties | |
parent | 4ce0a52a7da5951383d5395f85c2e70eacb42f20 (diff) | |
download | gitblit-5c284113a1a458db0d3440de351034503b3d52b3.tar.gz gitblit-5c284113a1a458db0d3440de351034503b3d52b3.zip |
Optionally display repository on-disk size on repositories page.
Diffstat (limited to 'distrib/gitblit.properties')
-rw-r--r-- | distrib/gitblit.properties | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties index 953baa1c..2ae3d011 100644 --- a/distrib/gitblit.properties +++ b/distrib/gitblit.properties @@ -97,6 +97,13 @@ web.allowZipDownloads = true # SINCE 0.5.0
web.syndicationEntries = 25
+# Show the size of each repository on the repositories page.
+# This requires recursive traversal of each repository folder. This may be
+# non-performant on some operating systems and/or filesystems.
+#
+# SINCE 0.5.2
+web.showRepositorySizes = 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.
|