بنقرة واحدة
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.