File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ You can run the gateway with:
49
49
``` bash
50
50
make serve # production-mode Gunicorn (http://localhost:4444)
51
51
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
53
53
```
54
54
55
55
Use ` make run ` or ` ./run.sh ` during development for auto-reload.
Original file line number Diff line number Diff line change @@ -155,4 +155,4 @@ CI configs live in `.github/workflows/`.
155
155
156
156
---
157
157
158
- Let me know if you'd like a shorter version or want to customize for internal team handoff.
158
+
Original file line number Diff line number Diff line change @@ -130,11 +130,16 @@ GitHub will delete the `pr-<number>` branch automatically.
130
130
---
131
131
132
132
## 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
134
137
``` bash
135
138
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
138
141
```
142
+ This removes references to remote branches that GitHub deleted after the merge.
143
+ This keeps your local environment clean and up to date.
139
144
140
145
---
You can’t perform that action at this time.
0 commit comments