Q&A highlight
Posted3 months agoActive3 months ago
Ask HN: How to use Codex for multiple tasks without PR merge conflicts?
CodexGitHubversion controlworkflow optimization
Ask HN: How to use Codex for multiple tasks without PR merge conflicts?
No synthesized answer yet. Check the discussion below.
Discussion (2 comments)
Showing 2 comments
3 months ago
Have you tried using git worktree. Your tasks should be fairly independent though.
3 months ago
Just like writing normal software: have it work on different parts of the codebase that don't have overlap, or do the work sequentially. AI is a time compressor, but it's still constrained by the same problems as normal engineers.
If one task changes the button to green, and the other one changes it to red at the same time, something will have to decide how to reconcile that difference