ワンクリックで
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