summaryrefslogtreecommitdiff
path: root/Assistant/Threads/Committer.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-03-03 13:39:57 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-03-03 13:44:35 -0400
commit5dcd5c82ef47fa121e9800835fc399d5ecdc3af3 (patch)
treed96d1020173dd3016bbc6b2ae6ed3d36133a4607 /Assistant/Threads/Committer.hs
parent9bce151df7b073c5f2507ea15ca2237814ae9248 (diff)
assistant: Prevent automatic commits from causing git-gc runs, as that can make things quite slow. Instead, git-gc --auto is run once a day. (This can be disabled by the usual gc.auto=0 setting.)
Diffstat (limited to 'Assistant/Threads/Committer.hs')
-rw-r--r--Assistant/Threads/Committer.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Assistant/Threads/Committer.hs b/Assistant/Threads/Committer.hs
index 99d01b580..75976ee3c 100644
--- a/Assistant/Threads/Committer.hs
+++ b/Assistant/Threads/Committer.hs
@@ -82,7 +82,8 @@ commitStaged = do
Right _ -> do
direct <- isDirect
let params = nomessage $ catMaybes
- [ Just $ Param "commit"
+ [ Just $ Param "-c", Just $ Param "gc.auto=0"
+ , Just $ Param "commit"
, Just $ Param "--quiet"
{- In indirect mode, avoid running the
- usual git-annex pre-commit hook;