从shell提交时,它会加载vi并具有以下信息:
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
# On branch develop
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
# ......
然后列出git status
的内容。我喜欢这些更详细的提交体,但是当我通过intellij的接口提交时,这就丢失了。我似乎无法确定是否有可能告诉intellij包含这些信息。
答案 0 :(得分:4)
请注意,此机构并未承诺使用Git。从vi提交时以哈希开头的任何内容都被视为注释,并且不包含在提交消息中。仅包括您编写的文本。从这个角度来看,IntelliJ与vi没有区别。
根据提交消息模板,现在不支持它们:IDEA-66355