원클릭으로
git
Use plain Git for local history, branches, pushes, and Hostinger deployment checkouts.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use plain Git for local history, branches, pushes, and Hostinger deployment checkouts.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when editing public, account, shop, astrologer, temple, cart, checkout, contact, or support templates.
Use when editing owner/admin pages, CRUD forms, media library, environment editor, permissions, audit log, integrations, or admin navigation.
Use bapXphp CLI for ALL file/content/db operations. Never use raw shell/edit/write/find/grep tools directly.
Use when editing Hostinger deployment, Git auto-deploy, environment, permissions, cron, or production setup documentation.
Use when designing, implementing, or debugging sub-agent handoff workflows, model routing, telemetry, or admin-panel agent wiring.
Use when editing PHP controllers, services, JSON persistence, auth, support assistant context, wallet, orders, reviews, media, or audit behavior.
| type | skill |
| name | git |
| description | Use plain Git for local history, branches, pushes, and Hostinger deployment checkouts. |
| allowed-tools | Bash(git:*) |
Git is the only repository executable required on Hostinger. Do not require
GitHub CLI (gh) on the hosted server.
git for status, diff, branches, commits, fetch, pull, and push.bapXphp only for project-owned operations such as tests, maps, schema,
database access, browser automation, hooks, and AI configuration.bapXphp.git status --short --branch
git switch -c fix/issue-123-description
git diff --check
git add path/to/intended-file
git commit -m "fix: describe the change"
git push -u origin HEAD
Pushing an eligible feature/fix branch lets the repository workflow create or update the PR. CI and reviewer handoffs run in GitHub Actions.
git status --short --branch
git fetch origin
git pull --ff-only origin main
git rev-parse HEAD
Hostinger hPanel normally performs the pull automatically. Manual SSH Git commands are recovery and diagnosis tools only.