Skip to content

Commit 14439a8

Browse files
authored
Merge pull request #115 from shoummu1/main
Documentation Update
2 parents 6f9db42 + 78766ae commit 14439a8

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

docs/docs/development/building.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ You can run the gateway with:
4949
```bash
5050
make serve # production-mode Gunicorn (http://localhost:4444)
5151
make run # dev-mode Uvicorn (reloads on change)
52-
./run.sh --reload # same as above, with CLI flags
52+
./run.sh --reload # same as 'make run', with CLI flags
5353
```
5454

5555
Use `make run` or `./run.sh` during development for auto-reload.

docs/docs/development/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,4 +155,4 @@ CI configs live in `.github/workflows/`.
155155

156156
---
157157

158-
Let me know if you'd like a shorter version or want to customize for internal team handoff.
158+

docs/docs/development/review.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,16 @@ GitHub will delete the `pr-<number>` branch automatically.
130130
---
131131

132132
## 7. Cleaning Up Locally
133-
133+
After the PR is merged:
134+
* Switch back to the main branch
135+
* Delete the local feature branch
136+
* Prune deleted remote branches
134137
```bash
135138
git switch main
136-
git fetch -p # prune deleted remotes
137-
git branch -D pr-<PR-number>
139+
git branch -D pr-<PR-number> # replace <PR-number> with your branch name
140+
git fetch -p # prune deleted remotes
138141
```
142+
This removes references to remote branches that GitHub deleted after the merge.
143+
This keeps your local environment clean and up to date.
139144

140145
---

0 commit comments

Comments
 (0)