Reputation: 61
I have a label that's a subset of a bigger tree and wondering if there is an option in p4 sync to update only the files that are part of the workspace. p4 sync @label usually deletes all other files that are not part of the label.
Upvotes: 1
Views: 339
Reputation: 71454
Do:
p4 sync @label,@label
Or:
p4 -F %depotFile%%depotRev% files @label | p4 -x - sync
Upvotes: 1