Multi Repo Pull With Untracked Conflict Recovery

Diagnose and resolve multi-repo pull failures caused by untracked files conflicting with remote changes

vamseeachanta Updated

File contents

Multi-Repo Pull with Untracked Conflict Recovery

When a multi-repo pull fails due to untracked local files conflicting with incoming remote files, use git stash -u (not plain git stash) to capture both tracked and untracked changes. This temporarily moves marker files like .codex/ and .Codex/skills/ out of the way before pulling. After pull succeeds, restore the stash and verify no conflict markers remain — then safely drop the stash. This pattern handles the common case where workflow metadata or generated files block standard pulls in workspace ecosystems.

vamseeachanta/workspace-hub/tree/main/.agents/skills/workspace-hub/learned/multi-repo-pull-with-untracked-conflict-recovery commit d913829474

Frequently asked questions

npx skillmds@latest add vamseeachanta/multi-repo-pull-with-untracked-conflict-recovery