commit: check for empty message before the check for untouched template
commitbc17f35f8c65295fbfcb281dda8560136fb26fb4
authorKaartic Sivaraam <kaarticsivaraam91196@gmail.com>
Mon, 17 Jul 2017 15:36:15 +0000 (17 21:06 +0530)
committerJunio C Hamano <gitster@pobox.com>
Mon, 17 Jul 2017 22:10:41 +0000 (17 15:10 -0700)
tree0ed2f0e5bbaa8e07ebda466083b9546ccf4bf3a9
parent08f9c32463bf9e578acb7ac5f77afd36e803c6bc
commit: check for empty message before the check for untouched template

The check for whether the template given to 'git commit' is untouched
is done before the empty message check. This results in a wrong error
message being displayed in the following case. When the user removes
everything in template completely to abort the commit he is shown the
"template untouched" error which is wrong. He should be shown the
"empty message" error.

Do the empty message check before checking for an untouched template
thus fixing this issue.

Signed-off-by: Kaartic Sivaraam <kaarticsivaraam91196@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/commit.c