1. ホーム
  2. git

[解決済み] git: コミットメッセージにコメントとして index diff を表示

2022-08-17 12:30:19

質問

いつ 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
# Your branch is ahead of 'origin/master' by 26 commits.
#
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#   modified:   Showcase/src/com/gigantt/BorderArea.mxml
#   modified:   Showcase/src/com/gigantt/Client.mxml
#   modified:   Showcase/src/com/gigantt/GraphItem.mxml
#

コミットする差分も表示されるようにgitを調整するにはどうしたらよいでしょうか? 長い差分であることは承知していますが、それでも...とても便利です。

どのように解決するのですか?

この --verbose (または -v ) フラグを git commit を指定すると、コミットされるであろう内容の差分が表示されます。

git commit --verbose