Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sandbox/agent-config/rules/mission.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ gh pr create --head egg/<description> --title "Brief description" --body "..." -

**WORKTREE WARNING**: `git checkout main` FAILS. Always use: `git checkout -b egg/<name> origin/main`

**BRANCH LOCK (Pipeline mode)**: Branch switching blocked by gateway. Use `git checkout -- <file>` to restore individual files.
**BRANCH LOCK (Pipeline mode)**: Branch switching blocked by gateway. Use `git checkout [<commit-ish>] -- <file>` to restore individual files (e.g. `git checkout HEAD -- <file>`, `git checkout HEAD~1 -- <file>`, or `git checkout -- <file>`).

**Wrong branch fix**: `git log --oneline -1` (save hash), create correct branch, `git cherry-pick <hash>`

Expand Down
Loading