一键导入
commit
Use for managing commits, branching, and pull requests in the Laravel WAHA project to ensure a clean and logical git history.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use for managing commits, branching, and pull requests in the Laravel WAHA project to ensure a clean and logical git history.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | commit |
| description | Use for managing commits, branching, and pull requests in the Laravel WAHA project to ensure a clean and logical git history. |
This skill provides instructions for managing commits and pull requests in the Laravel WAHA project, ensuring a clean and logical git history.
main branch. Always create a new branch for your changes.update-readme, fix-session-auth, add-status-endpoint).feat:, fix:, chore:, etc.feat:, fix:, etc. in PR titles.gh CLI for interacting with GitHub (creating PRs, checking status, etc.).Check the current status and branch:
git status
git branch
Create a new branch if you are on main:
git checkout -b <branch-name>
Stage files for a logical change and commit them:
git add <file1> <file2>
git commit -m "Description of this logical change"
Repeat for other logical groups of changes.
Push the branch and create a PR using the gh CLI:
git push origin <branch-name>
gh pr create --title "Descriptive PR Title" --body "Detailed description of changes"