Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Crank out some code and tests (or tests and code, for TDD bonus points) and whatever docs are needed

  2. 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
titleWhy this format is recommended

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.

...