* fix:
  Ensure author & committer before asking for commit message.
This commit is contained in:
Junio C Hamano 2006-05-15 00:49:25 -07:00
Родитель 3f22deb7f5 ec4e69c06a
Коммит c8df633b4e
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -640,6 +640,8 @@ case "$no_edit" in
exit 1 exit 1
;; ;;
esac esac
git-var GIT_AUTHOR_IDENT > /dev/null || die
git-var GIT_COMMITTER_IDENT > /dev/null || die
${VISUAL:-${EDITOR:-vi}} "$GIT_DIR/COMMIT_EDITMSG" ${VISUAL:-${EDITOR:-vi}} "$GIT_DIR/COMMIT_EDITMSG"
;; ;;
esac esac