vote up 1 vote down star
1

Can perforce be adjusted so I don't need to "open files for edit"? Someone told me that this was a "feature", and that s/he guessed it could be turned off.

flag

50% accept rate

7 Answers

vote up 0 vote down check

See http://www.perforce.com/perforce/doc.081/manuals/p4guide/02_config.html (section Configuring workspace options). You can set the allwrite option, but even then you would have to do the offline synchronization or something like checking out all files and doing p4 revert -a (revert unchanged files) to find out which files you changed.

link|flag
vote up 0 vote down

I will resist trying to reason with you as to why you wish to do this. Probably teh simples way to do this is the following.

Check out the entire directory tree you are interested in eg

//depot/Projects/MyProj/...

All you files are now writeable and in editing (or checked out) mode. When you choose to submit your changes, simply do one of two things. Either right click the pending changelist and select Revert unchanged files to get rid of unchanged files before submitting or when submitting select the 'Dont Submit Unchanged Files' options under On Submit. This has the effect of only submitting the files you have changed.

If you also check the box beside 'Check out submitted files after Submit' it will even reopen those files so that you can continue working until the next time you wish to submit.

This is essentially what you are looking for.

link|flag
Although if you do this, you will risk annoying everyone else on your team, as every file will be marked as "open for edit by another user". – simonn Mar 17 at 14:15
vote up 1 vote down

Although that's not a direct answer to your request, I though I could share a little trick.

In my editor (SciTE), I can define keyboard shortcuts, with a macro expanding to the path of the currently edited file, running an application. If your favorite editor can do that, you can adapt this trick.

command.name.0.*=P4 edit
command.0.*=p4 edit -c default $(FileNameExt)
command.save.before.0.*=2

You can change the "default" to your current changelist number, too.

Of course, if your editor/IDE has Perforce support, so much the better...

link|flag
vote up 1 vote down

According to the Wikipedia page on Perforce, they expect you to "open files for edit" so the server can maintain a list of files that are expected to get changed. If you want to edit files without doing this, you have to manually change your local copy from read-only to read-write.

link|flag
vote up 0 vote down

@David G: The real reason why I want to get rid of it is because it is an extra hassle.

link|flag
I guess I view it as extra discipline, though I understand your point. – David G Oct 5 '08 at 17:10
Perforce keeps the unopened files as readonly, so I'm not sure how marking them for edit is any more hassle than changing the permissions (or forcing a write). You might also benefit from finding a way to integrate Perforce file actions into your editor, which is how I usually handle it. – cjhuitt Oct 6 '08 at 2:38
vote up 1 vote down

With Perforce, multiple people can open the same file for edit. So it doesn't behave exactly like Subversion but it doesn't lock you out of changing the file. You'll obviously have to resolve when you submit your changes if anybody else has changed it in the interim. What is your real goal? To me, 'opening for edit' is not a big handicap. I often change files for experimental purposes and don't want those changes accidentally put in the depot. I actually like being forced to explicitly "check out." I haven't used subversion recently, so I'm more used to perforce now.

link|flag
vote up 0 vote down

One approach you can use is edit the readonly files on your synch'd branch. When you're ready to submit use the 'check consistency' File | More option to create a changelist on the basis of the modified files. There's probably a command-line way of doing this but I don't know what it is.

link|flag

Your Answer

Get an OpenID
or

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