Created
November 9, 2016 22:07
-
-
Save amagura/9b451cf7916937e760cfa606d60fd0ae to your computer and use it in GitHub Desktop.
Syntax I occasionally use in CHANGES and commits for describing what's different.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Filename: | |
(A +): Added A. | |
(- A): Removed A. | |
(B +): Added B. | |
(B += foo): Added foo to B. | |
(B -= foo): Removed foo from B. | |
(foobar +- B): Replaced B with foobar. | |
(foobar): Modified foobar. | |
(C +): Added C. | |
(C, foobar): Modified C and foobar. | |
(C; D +): Modified C and added D. | |
(D +?): If D already exists, then D has been modified, else D is a new addition. | |
(*): Miscellaneous changes made | |
(!): bug fixed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment