.qwen/commands/qc/commit.md
Generate a clear, concise commit message based on staged changes, confirm with the user, then commit and push.
git status to check:git diff --staged to see all staged changesgit branch --show-currentmain or master:git checkout -b <branch-name><branch> doesn't seem to match these changes."fix(insight):,
feat(auth):)Format:
<type>(<scope>): <short description>
- <detail point 1> (optional)
- <detail point 2> (optional)
- ...
This <explains the why/impact of the changes>.
git commit -m "<commit-message>"git push -u origin <branch-name> (use -u for new branches)