원클릭으로
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"