smbear
smbear

Reputation: 1041

Perforce: Additional edits after resolve

I've performed integration (p4 integrate) and then resolved conflicts in all files (p4 resolve ...). After that I noticed that one conflict could be resolved better by providing additional edits.

I want Perforce to think that the additional edits (after p4 edit file/in/question and vim file/in/question) are part of resolution, not an separate edit.

How can achieve this using p4 command line tool?

Upvotes: 1

Views: 1700

Answers (1)

Samwise
Samwise

Reputation: 71517

If you do p4 edit and make the edits, they will be part of the same atomic changelist and the same revision.

(It is possible to make the edits in such a way as to have them not get propagated back to the source on a reverse integrate, by "hiding" them in the merge, but you probably don't want to do this because it likely means you'll end up re-resolving the conflict later.)

Upvotes: 2

Related Questions