summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-01-07 13:57:37 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-01-07 13:57:37 -0400
commit6cb1dff757ffad735e04d6d8134f5fbfdea71650 (patch)
tree29904b86c519ecb6b03585bddf8e3fd60c4af185
parent2684cbbd23feed32ffd50ccdd8a8303a4dfbfa28 (diff)
quiet git commits
-rw-r--r--Command/Init.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Command/Init.hs b/Command/Init.hs
index 8ad9f79d7..47ac8e4c0 100644
--- a/Command/Init.hs
+++ b/Command/Init.hs
@@ -50,7 +50,7 @@ cleanup = do
g <- Annex.gitRepo
logfile <- uuidLog
liftIO $ Git.run g ["add", logfile]
- liftIO $ Git.run g ["commit", "-m", "git annex init", logfile]
+ liftIO $ Git.run g ["commit", "-q", "-m", "git annex init", logfile]
return True
{- configure git to use union merge driver on state files, if it is not
@@ -71,7 +71,7 @@ gitAttributesWrite repo = do
attributes = Git.attributes repo
commit = do
Git.run repo ["add", attributes]
- Git.run repo ["commit", "-m", "git-annex setup",
+ Git.run repo ["commit", "-q", "-m", "git-annex setup",
attributes]
attrLine :: String