Child pages
  • How to write a commit message

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

The type is the general idea behind your commit: are you fixing a bug, making an improvement, etc. ?

Type

Meaning

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="6f90eb48-da31-402e-a08d-facf21b436fe"><ac:plain-text-body><! [CDATA[ [-]

Bug fix.

]]></ac:plain-text-body></ac:structured-macro>

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="8273d2d4-4499-4acc-b1a1-74bec1677525"><ac:plain-text-body><! [CDATA[ [*]

Improvement.

]]></ac:plain-text-body></ac:structured-macro>

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="32b320cc-11cb-42c7-9e94-0165d130163b"><ac:plain-text-body><! [CDATA[ [+]

New feature.

]]></ac:plain-text-body></ac:structured-macro>

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="5717f91e-d2ee-4699-bc08-39c2576e2410"><ac:plain-text-body><! [CDATA[ [~]

Feature deprecation.

]]></ac:plain-text-body></ac:structured-macro>

Please make sure that one commit does only one thing. If you made both fixes and improvement in the code, either use the most important change in the commit message, or make two commits.

...