X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git-commit.sh;h=bd3dc71cd6302190839c5d78310576fb709792f9;hb=475443c8489d9167b944367d8ec8bfef77bee0a5;hp=1e7c09e1f2fdf3b4327c903084bd86616b7956f1;hpb=9086a18cb81f99fff943b36830396ac8c37c7e9f;p=git.git diff --git a/git-commit.sh b/git-commit.sh index 1e7c09e1..bd3dc71c 100755 --- a/git-commit.sh +++ b/git-commit.sh @@ -537,7 +537,7 @@ t) ;; esac -if [ -f "$GIT_DIR/MERGE_HEAD" ]; then +if test -f "$GIT_DIR/MERGE_HEAD" && test -z "$no_edit"; then echo "#" echo "# It looks like you may be committing a MERGE." echo "# If this is not correct, please remove the file" @@ -605,16 +605,23 @@ else current= fi -{ - test -z "$only_include_assumed" || echo "$only_include_assumed" - run_status -} >>"$GIT_DIR"/COMMIT_EDITMSG +if test -z "$no_edit" +then + { + test -z "$only_include_assumed" || echo "$only_include_assumed" + run_status + } >>"$GIT_DIR"/COMMIT_EDITMSG +else + # we need to check if there is anything to commit + run_status >/dev/null +fi if [ "$?" != "0" -a ! -f "$GIT_DIR/MERGE_HEAD" -a -z "$amend" ] then rm -f "$GIT_DIR/COMMIT_EDITMSG" run_status exit 1 fi + case "$no_edit" in '') case "${VISUAL:-$EDITOR},$TERM" in