From 1b680d330b902e01bbe01e3e7dc1bde2fe512c0b Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 13 Jul 2022 15:17:08 -0400 Subject: [PATCH] revert accidental change --- Annex/Branch.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Annex/Branch.hs b/Annex/Branch.hs index d7f8c13c99..bf1b092726 100644 --- a/Annex/Branch.hs +++ b/Annex/Branch.hs @@ -439,7 +439,7 @@ createMessage = fromMaybe "branch created" . annexCommitMessage <$> Annex.getGit {- Stages the journal, and commits staged changes to the branch. -} commit :: String -> Annex () -commit = whenM (journalDirty gitAnnexJournalDir) . tforceCommit +commit = whenM (journalDirty gitAnnexJournalDir) . forceCommit {- Commits the current index to the branch even without any journalled - changes. -}