From 7f1d1129628c63f46aebe03afacdb2ab259ef2d6 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Wed, 8 Jun 2005 13:44:32 -0700 Subject: [PATCH] Remove MERGE_HEAD after committing merge --- git-commit-script | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/git-commit-script b/git-commit-script index 903c8dfabd..1abfa143ee 100755 --- a/git-commit-script +++ b/git-commit-script @@ -21,4 +21,5 @@ grep -v '^#' < .editmsg | git-stripspace > .cmitmsg [ -s .cmitmsg ] || exit 1 tree=$(git-write-tree) || exit 1 commit=$(cat .cmitmsg | git-commit-tree $tree -p $PARENTS) || exit 1 -echo $commit > ${GIT_DIR:-.git}/HEAD +echo $commit > $GIT_DIR/HEAD +rm -f -- $GIT_DIR/MERGE_HEAD -- 2.11.4.GIT