diff options
author | Joey Hess <joey@kitenet.net> | 2011-07-14 17:18:53 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-07-14 17:18:53 -0400 |
commit | 9bb797c0eae3c9d2f119a734762a6d5fa7321a80 (patch) | |
tree | 02fbacbe85a5b754bb078c6bf975059f667dc267 | |
parent | ded259112449f592bc42207e89c82268f3795f12 (diff) |
unannex: only commit, no -a
-a is actually not needed; only commit staged changes
-rw-r--r-- | Command/Unannex.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Unannex.hs b/Command/Unannex.hs index d3623ed99..960f99722 100644 --- a/Command/Unannex.hs +++ b/Command/Unannex.hs @@ -78,6 +78,6 @@ cleanup file key = do -- Commit staged changes at end to avoid confusing the -- pre-commit hook if this file is later added back to -- git as a normal, non-annexed file. - AnnexQueue.add "commit" [Params "-a -m", Param "content removed from git annex"] [] + AnnexQueue.add "commit" [Param "-m", Param "content removed from git annex"] [] return True |