원클릭으로
git
Git and GitHub workflow — auth via GitHub App, branch management for feature work, opening pull requests, and syncing with main.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Git and GitHub workflow — auth via GitHub App, branch management for feature work, opening pull requests, and syncing with main.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | git |
| description | Git and GitHub workflow — auth via GitHub App, branch management for feature work, opening pull requests, and syncing with main. |
# view git proxy and user config
git config --global --list
# verify basic git access
git ls-remote --heads https://github.com/housecat-inc/go-template.git
# verify basic gh cli access
gh auth status
Always branch with a $HOSTNAME/ from an up-to-date main:
git checkout main
git pull origin main
git checkout -b $HOSTNAME/short-description
Use descriptive branch names: warm-bengal/feature-add-search, warm-bengal/fix-login-redirect, warm-bengal/refactor-db-layer.
Prefer rebasing on main for a clean history.
Make small, focused commits with clear messages:
git add -A
git commit -m "add search endpoint and handler"
git push origin $HOSTNAME/short-description
Use gh to open GitHub pull requests with a title and description as customer-facing release notes. Focus on what changed for the user, not code details, test coverage, or file-level changes. The code reviewer will read the code and run automated tests.
gh auth login
gh pr create --title "Added GitHub integration" --body "- Add GitHub app sign in option
- Add GitHub project management service integration
- Add GitHub flavored markdown (GFM) to document renderer"
Title: Past-tense summary of the user-visible change.
Body: Bullet list of notable changes.
Example:
Title: Added GitHub integration
Body:
- Add GitHub app sign in option
- Add GitHub project management service integration
- Add GitHub flavored markdown (GFM) to document renderer
How to use browser tool against this app's session auth. Use when taking screenshots, testing UI, or interacting with authenticated pages via the browser tool.
Database workflow — Conventions and sqlite tools
UX workflow — Design standards, ASCII wireframes, and tempui / templui-pro tools