X-Git-Url: https://git.octo.it/?a=blobdiff_plain;ds=sidebyside;f=git-commit.sh;h=18b259c7086224f70cfd69798dc6332df040a61d;hb=bf7960eb51a26bcf52f27a60bfcf005661266b1e;hp=18ad36158dad5a2fc542cb9c1daf65b32ba5b4a3;hpb=a7928f8ec7fb3c368e6086ab48f41e33a22e1b94;p=git.git diff --git a/git-commit.sh b/git-commit.sh index 18ad3615..18b259c7 100755 --- a/git-commit.sh +++ b/git-commit.sh @@ -159,7 +159,9 @@ if [ ! -r "$GIT_DIR/HEAD" ]; then exit 1 fi PARENTS="" + current= else + current=$(git-rev-parse --verify HEAD) if [ -f "$GIT_DIR/MERGE_HEAD" ]; then PARENTS="-p HEAD "`sed -e 's/^/-p /' "$GIT_DIR/MERGE_HEAD"` fi @@ -220,7 +222,7 @@ if test -s .cmitchk then tree=$(git-write-tree) && commit=$(cat .cmitmsg | git-commit-tree $tree $PARENTS) && - echo $commit > "$GIT_DIR/HEAD" && + git-update-ref HEAD $commit $current && rm -f -- "$GIT_DIR/MERGE_HEAD" else echo >&2 "* no commit message? aborting commit."