Reputation: 20302
On professional git software like gitkraken, you are able to specifiy a commit summary message and a description.
It seems like in PhpStorm you can only write a description:
Am I missing it or is it not possible?
Upvotes: 2
Views: 607
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