Thanks to visit codestin.com
Credit goes to gist.github.com

Skip to content

Instantly share code, notes, and snippets.

View soomrozaid's full-sized avatar
💼
working on a project

Zaid Soomro soomrozaid

💼
working on a project
View GitHub Profile
@soomrozaid
soomrozaid / conventional-commits.md
Created May 29, 2026 01:01 — forked from JohnnyWalkerDigital/conventional-commits.md
A flow diagram showing which Conventional Commits prefix to use
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**])
void main() {
var locationA = {
"orders": [
{
"meals": [
"Chicken",
"Beef",
],
"orderNum": 123,
},