flowchart TD
A([Start]) --> B{Did you fix a bug?}
B -->|Yes| C([ **fix** ])
B -->|No| D{Did you change functionality or affect the UI?}
D -->|Yes| E([**feat**])
D -->|No| F{Did you add or change tests?}
F -->|Yes| G([**test**])See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
This file contains hidden or 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
| void main() { | |
| var locationA = { | |
| "orders": [ | |
| { | |
| "meals": [ | |
| "Chicken", | |
| "Beef", | |
| ], | |
| "orderNum": 123, | |
| }, |