Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill git-workflow-ps-tech명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | git-workflow-ps-tech |
| description | >- Use when this capability is needed. |
gh when available (schemas first—see reference.md).cd there first). If not a git repo, say so and stop there.gh: gh auth status; then list/view PRs and checks (see reference.md).git branch -a, git status; optional gh api repos/{owner}/{repo}/branches if JSON is needed (gh repo view --json nameWithOwner for owner/repo).production and staging: staging tracks production, often with a few extra commits. Updating production means moving it forward to staging (conceptually), using the flows below—not merge-button shortcuts that scatter merge commits.staging. If staging advances before the feature is ready, rebase the dev branch onto staging.git rebase moves your branch on top of the target and keeps history linear—this is the team preference.git merge.gh actions often behave like non–fast-forward merges and break linearity. Prefer CLI (git checkout, git rebase, git push) for control.<<<<<<<).git add <file>git rebase --continuegit rebase --abortgit rebase -i HEAD~X). Aim for one commit per feature (often one task per feature).Use git fetch first; rebase onto origin/<branch> so the base is the latest remote tip. Full command sequences for updating dev from staging, merging dev → staging, staging → production, promotion up to a commit, excluding a middle commit, Odoo.sh trigger, reverts, and force-push policy are in reference.md.
Once others may have your commits, treat them as immutable. Follow-ups are new commits with clear why in the body—not silent history rewrites on shared branches.
The training deck stresses a short first line and a verbose body focused on why. For bracketed [TAG], [TASK], module prefix, and the 80-character header rule, use the project skill commit-message-format.
review-github skill when the user wants a production-style review; this skill focuses on workflow and discovery/read.gh read patterns: reference.md.Source: brinkflew/odoo-skills — distributed by TomeVault.