Reputation: 37
I've been putting perforce's dvcs through the ringer and found a new problem that I can't seem to resolve.
Questions:
Why is my fetch detecting a file that still needs resolution?
Why does p4 fetch differ from p4v fetch?
How can I clean up my broken state? (e.g fetch in p4v detects no new files, tangent depot is cleaned up, etc)
Upvotes: 0
Views: 362
Reputation: 71454
My recommendation would be to abandon any attempt to complete this operation via P4V -- the fact that it's talking about "resolve" in the context of a fetch operation (which operates by tangent|unsubmit+resubmit
rather than sync+resolve
) makes it impossible to tell exactly how it's fallen off the rails.
Go to the command prompt and run p4 resubmit
. Hopefully that will be able to complete the fetch operation. If resubmit
says that there's nothing to do, re-run p4 fetch
.
Upvotes: 1