원클릭으로
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 직업 분류 기준
Skill evaluation framework, self-evolving agent loop, multi-agent SDLC orchestration, and tool-use optimization for automated quality gates.
Use when editing owner/admin pages, CRUD forms, media library, environment editor, permissions, audit log, integrations, or admin navigation.
Use when editing PHP controllers, services, JSON persistence, auth, support assistant context, wallet, orders, reviews, media, or audit behavior.
Use bapXaura 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 editing README, docs, project-map docs, or agent-facing instructions.
| 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.bapXaura only for project-owned operations such as tests, maps, schema,
database access, browser automation, hooks, and AI configuration.bapXaura.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.
All .github/workflows/*.yml files contain an if: guard matching the
repository name. When the repo is renamed or forked, update every workflow:
branch-pr.yml: github.repository == '<owner>/<repo>'ci.yml, ai-pr-review.yml, issue-agent-trigger.yml, issue-comment-handoff.yml: endsWith(github.repository, '<repo>')sync-upstream.yml: github.repository == '<owner>/<repo>'All seven workflow files must match the current repository. CI runs are otherwise silently skipped.
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.