mirror of
https://github.com/velocitatem/cvfs.git
synced 2026-05-31 08:43:37 +00:00
559 B
559 B
Stage all meaningful changes and create a commit with a concise, accurate message following conventional commits format (feat:, fix:, refactor:, chore:, etc.).
Steps:
- Run
git statusandgit diffto understand what changed - Skip any generated files, lockfiles (unless intentional), secrets, or build artifacts
- Stage the relevant changes with
git add - Write a commit message: one-line summary (type: description), optional body if needed
- Commit
Do not push unless explicitly asked. Do not amend existing commits. Report what was committed.