summaryrefslogtreecommitdiff
path: root/Omni/Agent/WORKER_AGENT_GUIDE.md
diff options
context:
space:
mode:
authorOmni Worker <bot@omni.agent>2025-11-21 05:15:26 -0500
committerOmni Worker <bot@omni.agent>2025-11-21 05:15:26 -0500
commitf23a64f8e5f5849cf55863fa31bd6fc7e24b6aa2 (patch)
tree0a195963a5047684cf0ecada02e8ba1c379134e9 /Omni/Agent/WORKER_AGENT_GUIDE.md
parentd31c92b78c73a40286c3d01760eb340d32945d7b (diff)
fix(doc): use live instead of origin/live for base branch
Diffstat (limited to 'Omni/Agent/WORKER_AGENT_GUIDE.md')
-rw-r--r--Omni/Agent/WORKER_AGENT_GUIDE.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Omni/Agent/WORKER_AGENT_GUIDE.md b/Omni/Agent/WORKER_AGENT_GUIDE.md
index 938c98e..e832a2a 100644
--- a/Omni/Agent/WORKER_AGENT_GUIDE.md
+++ b/Omni/Agent/WORKER_AGENT_GUIDE.md
@@ -55,7 +55,7 @@ task update t-123 in-progress
2. **Check for Unmerged Work**: Look for dependencies that have existing branches (e.g., `task/t-parent-id`) which are NOT yet merged into `live`.
3. **Select Base**:
* If you find an unmerged dependency branch, check it out: `git checkout task/t-parent-id`.
- * Otherwise, start from fresh live code: `git fetch origin live && git checkout -b task/t-123 origin/live`.
+ * Otherwise, start from fresh live code: `git checkout -b task/t-123 live`.
4. **Implement**:
(Proceed to implementation)