...
Crank out some code and tests (or tests and code, for TDD bonus points) and whatever docs are needed
Periodically commit your work with messages like:
Code Block feat: FORMS-1234 description of the change This is the body of the commit message and provides more detail for anyone in the future who is looking into this commitnew map component for dropping a pin Added a new map component that allows the user to drop a "pin" on the map, and the location is saved as both Lat/Lon and UTM coordinates.
Expand | ||
---|---|---|
| ||
It’s only a recommendation that commit messages use this format, as commit messages will eventually be squashed (and the final commit message must be in this format). So it’s a good idea to always use this format so that we are used to how the final commit message must look. |
...