Black
Black

Reputation: 20302

PhpStorm - Add summary to commit message

On professional git software like gitkraken, you are able to specifiy a commit summary message and a description.

gitkraken

It seems like in PhpStorm you can only write a description:

phpstorm

Am I missing it or is it not possible?

Upvotes: 2

Views: 607

Answers (1)

kowsky
kowsky

Reputation: 14499

There are numerous clients that do not offer fields for subject and description separately. The usual convention goes like this:

Separate subject from body with a blank line

Git itself will then separate the subject from the description for certain commands that are supposed to only show the subject (e.g. git log --oneline).

Upvotes: 4

Related Questions