2

In perforce, is it possible to get a list of the change lists that have been integrated into a workspace but not committed?

Angelo Genovese
  • 3,398
  • 17
  • 23
  • I don't think so... You could have already integrated only some files, corresponding to incomplete integrated changelists, and leaving incomplete changelists to integrate. It looks like "finding the label which was used to synchronize the client" (which I think you can't). – pascal Sep 21 '10 at 04:35
  • Maybe you could write a script comparing the result of `p4 interchanges` in the current client, with the result of `p4 interchanges` in another client (in which the integrations are not pending)... – pascal Sep 21 '10 at 04:42

1 Answers1

2

What about p4 resolved? It won't tell you exactly which changelists, but it will tell you which file versions, which can then be pretty easily tracked back to changelists.

Eric Warmenhoven
  • 2,942
  • 20
  • 17