Fix Forgejo SSH port: 22 not 2222

This commit is contained in:
Hoid 2026-02-19 13:19:01 +00:00
parent 0cc0c0860d
commit b01326a3a9
3 changed files with 3 additions and 3 deletions

View file

@ -57,7 +57,7 @@ export PATH=$PATH:/usr/local/bin
- **Push code:** - **Push code:**
```bash ```bash
ssh k3s-mgr ssh k3s-mgr
cd /tmp && git clone ssh://git@git.cloonar.com:2222/openclawd/docfast.git cd /tmp && git clone ssh://git@git.cloonar.com/openclawd/docfast.git
cd docfast && <make changes> && git add -A && git commit -m "..." && git push origin main cd docfast && <make changes> && git add -A && git commit -m "..." && git push origin main
``` ```
- **Push to main** → auto-deploys to staging - **Push to main** → auto-deploys to staging

View file

@ -20,7 +20,7 @@ export PATH=$PATH:/usr/local/bin
```bash ```bash
ssh k3s-mgr ssh k3s-mgr
cd /tmp cd /tmp
git clone ssh://git@git.cloonar.com:2222/openclawd/<REPO>.git git clone ssh://git@git.cloonar.com/openclawd/<REPO>.git
cd <REPO> cd <REPO>
# ... make changes ... # ... make changes ...
git add -A && git commit -m "descriptive message" && git push origin main git add -A && git commit -m "descriptive message" && git push origin main

View file

@ -62,7 +62,7 @@ export PATH=$PATH:/usr/local/bin
- **Push code:** - **Push code:**
```bash ```bash
ssh k3s-mgr ssh k3s-mgr
cd /tmp && git clone ssh://git@git.cloonar.com:2222/openclawd/SnapAPI.git cd /tmp && git clone ssh://git@git.cloonar.com/openclawd/SnapAPI.git
cd SnapAPI && <make changes> && git add -A && git commit -m "..." && git push origin main cd SnapAPI && <make changes> && git add -A && git commit -m "..." && git push origin main
``` ```
- **Push to main** → auto-deploys to staging (CI/CD needs setup — same pattern as DocFast) - **Push to main** → auto-deploys to staging (CI/CD needs setup — same pattern as DocFast)