diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-11-30 02:26:29 -0500 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-11-30 02:26:29 -0500 |
commit | d75013a0e88a1f46fd16f5ba9344ff17ed84cd37 (patch) | |
tree | c153e256f1608c219e4717e3fab217c8aec1187b /conf | |
parent | b6437b5a4c52bceb8032b00b474c2aa0ced69575 (diff) | |
download | gitea-d75013a0e88a1f46fd16f5ba9344ff17ed84cd37.tar.gz gitea-d75013a0e88a1f46fd16f5ba9344ff17ed84cd37.zip |
fix #580
Diffstat (limited to 'conf')
-rw-r--r-- | conf/app.ini | 6 | ||||
-rw-r--r-- | conf/locale/locale_en-US.ini | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/conf/app.ini b/conf/app.ini index dba75ed1b5..0fec297bc5 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -257,6 +257,12 @@ CONN = [git] MAX_GITDIFF_LINES = 10000 +; Arguments for command 'git fsck', e.g.: "--unreachable --tags" +; see more on http://git-scm.com/docs/git-fsck/1.7.5 +FSCK_ARGS = +; Arguments for command 'git gc', e.g.: "--aggressive --auto" +; see more on http://git-scm.com/docs/git-gc/1.7.5 +GC_ARGS = [i18n] LANGS = en-US,zh-CN,zh-HK,de-DE,fr-CA,nl-NL diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index d798f23ecc..2b60811206 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -476,6 +476,8 @@ dashboard.delete_inactivate_accounts = Delete all inactive accounts dashboard.delete_inactivate_accounts_success = All inactivate accounts have been deleted successfully. dashboard.delete_repo_archives = Delete all repositories archives dashboard.delete_repo_archives_success = All repositories archives have been deleted successfully. +dashboard.git_gc_repos = Do garbage collection on repositories +dashboard.git_gc_repos_success = All repositories have done garbage collection successfully. dashboard.server_uptime = Server Uptime dashboard.current_goroutine = Current Goroutines dashboard.current_memory_usage = Current Memory Usage |