git commit でコミットメッセージ入力画面からコミットを取りやめる方法

コミットメッセージを消して保存すると取りやめることができる。

コメントは残っていても良い。

# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch master
#
# Initial commit
#
# Changes to be committed:
#   new file:   hoge
#

上の状態で保存すると、コミットメッセージが空なのでコミットに失敗しました、というメッセージが出てコミットされない。

$ git commit                     
Aborting commit due to empty commit message.