Git & Jekyll Workflow Notes
Git Workflow Stage all changes at once git add . . means add all modified or new files. Correct commit message format (to avoid commitlint errors) git commit -m "feat: update about page and fix broken icons" Type Purpose feat New feature fix Bug fix docs Documentation changes style Formatting (no logic change) refactor Code refactor (not a bug fix) chore Misc tasks (no functional impact) Commit message must follow the format type: message, otherwise commitlint or husky will block the commit. ...