docs: remove deprecated git-forgejo wrapper docs
Some checks failed
lane-shas / verify pinned lane SHAs (pull_request) Failing after 32m18s
smoke / smoke (-m "not quarantine") (pull_request) Failing after 34s
workbench-ui / playwright smoke (pull_request) Failing after 22s
workbench-ui / build + vitest (pull_request) Failing after 13m13s

This commit is contained in:
Shay 2026-07-05 14:29:27 -07:00
parent 19ce7fa0e6
commit c0d3420596

View file

@ -1,24 +0,0 @@
# Git + Forgejo Setup (replaces GitHub CLI)
We do **not** use the `gh` (GitHub CLI) tool.
All Git operations use plain `git`, with remotes transparently forwarded to our self-hosted Forgejo instance via `insteadOf` configuration.
## Required global config
```bash
git config --global url."ssh://git@core-gitquarters.acbcontent.org:29222/core-labs/".insteadOf "git@github.com:core-labs/"
git config --global url."https://core-gitquarters.acbcontent.org/core-labs/".insteadOf "https://github.com/core-labs/"
git config --global url."ssh://git@core-gitquarters.acbcontent.org:29222/AssetOverflow/".insteadOf "git@github.com:AssetOverflow/"
git config --global url."https://core-gitquarters.acbcontent.org/AssetOverflow/".insteadOf "https://github.com/AssetOverflow/"
```
## Usage
- Clone, fetch, push, etc. with normal `git` commands (e.g. `git push -u origin main`).
- The above rules rewrite `git@github.com:AssetOverflow/core.git` etc. to the Forgejo SSH/HTTPS endpoints.
- For PRs, reviews, and issue management: use the Forgejo web UI at https://core-gitquarters.acbcontent.org/forgejo_admin/core
See AGENTS.md for full workflow rules, branch hygiene, and commit/PR guidelines.
This setup is mandatory for all contributors and agents.