git-revert and git-cherry-pick left behind the commit message file ./.msg,
have them use the -f option to git-commit to properly cleanup the
automatically created file.
Signed-off-by: Gerrit Pape <redacted>
---
builtin-revert.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/builtin-revert.c b/builtin-revert.c
index 4ba0ee6..9acdf47 100644
--- a/builtin-revert.c
+++ b/builtin-revert.c
@@ -376,10 +376,10 @@ static int revert_or_cherry_pick(int argc, const char **argv)
if (!no_commit) {
if (edit)
- return execl_git_cmd("commit", "-n", "-F", ".msg",
+ return execl_git_cmd("commit", "-n", "-f", ".msg",
"-e", NULL);
else
- return execl_git_cmd("commit", "-n", "-F", ".msg",
+ return execl_git_cmd("commit", "-n", "-f", ".msg",
NULL);
}
if (reencoded_message)--
1.5.1.2