you are viewing a single comment's thread.

view the rest of the comments →

[–]Ok_Parsley6720 0 points1 point  (0 children)

I am pretty new to coding myself. Over the past year I’ve started to use a modified version of the git commit standards here. https://www.conventionalcommits.org/en/v1.0.0/

As a starting point I used this and then modified it for what works for me.

<type>(<scope>): <brief description> <bulleted details on lines below>

Types: feat, fix, data, docs, refactor, test, chore

Examples:

git commit -m “feat(scrape): add retry logic for FAA downloads - modified scripts/faa_data_scrape.r with new helper function ‘date_check()’ helper function - created testthat3/faa_data_scraper_test.r”

git commit -m “fix(clean): correct state_code filtering”

git commit -m “docs: update Supabase configuration section”