vote up 0 vote down star

Is there any way to have the same file be a part of multiples changelists in perforce? With that I mean that from the set of changed lines in the file one subset will belong to a changelist, while the other subset will belong to a second changelist.

Bonus question: If perforce does not support this, then which Source Control Systems, if any, do?

flag

71% accept rate

4 Answers

vote up 3 vote down

The same copy of the file? No, unfortunately this isn't possible.

link|flag
Yeah, thought so... Perforce's most granular unit is a file. I wish it was a line... – David Reis Jul 2 at 17:52
2  
Best option is to branch the file and then integrate the branches later... – marcc Jul 2 at 18:05
As marcc says, the way to do this is by branching. If you think about it, that is really what you are doing - isolating changes in the same file to apply to different features/changes. – Greg Whitfield Jul 6 at 12:56
vote up 2 vote down

You could make a copy of the file with all of the changes, revert, edit the file copy one set of changes into the file, submit, edit, copy the next set of changes, submit, edit, etc...

link|flag
vote up 1 vote down

To answer the bonus question: GIT allows for per-line changelists.

For a comparison between the two view this question: GIT vs. Perforce- Two VCS will enter... one will leave.

link|flag
vote up 0 vote down

Another way to do this without branching is create additional workspaces (clients). Unless you really know what you're doing, be sure to set a different root directory in each of your workspaces. To save time (and disk), don't bother syncing the whole depot in the new workspace.

Sometimes, I'll have two copies of a depot (using two workspaces); one which contains work-in-progress and one which I keep unmodified. If I need to make a quickie change on a file that's heavily modified in my WIP workspace, I can use the 'virgin' workspace to make the change and submit it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.