一键导入
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 职业分类
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
| 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