vote up 9 vote down star
2

I sometimes use the feature 'Reconcile Offline Work...' found in Perforce's P4V IDE to sync up any files that I have been working on while disconnected from the P4 depot. It launches another window that performs a 'Folder Diff'.

I have files I never want to check in to source control (like ones found in bin folder such as DLLs, code generated output, etc.) Is there a way to filter those files/folders out from appearing as "new" that might be added. They tend to clutter up the list of files that I am actually interesting in. Does P4 have the equivalent of Subversion's 'ignore file' feature?

flag

68% accept rate
Could you provide an example of the CVS output so we can see what you mean, and why the answers given don't do what you want? – Greg Whitfield Sep 19 '08 at 6:35

5 Answers

vote up 10 vote down check

Assuming you have a client named "CLIENT", a directory named "foo" (located at your project root), and you wish to ignore all .dll files in that directory tree, you can add the following lines to your workspace view to accomplish this:

-//depot/foo/*.dll //CLIENT/foo/*.dll
-//depot/foo/.../*.dll //CLIENT/foo/.../*.dll

The first line removes them from the directory "foo" and the second line removes them from all sub directories. Now, when you 'Reconcile Offline Work...', all the .dll files will be moved into "Excluded Files" folders at the bottom of the folder diff display. They will be out of your way, but can still view and manipulate them if you really need to.

You can also do it another way, which will reduce your "Excluded Files" folder to just one, but you won't be able to manipulate any of the files it contains because the path will be corrupt (but if you just want them out of your way, it doesn't matter).

-//depot/foo.../*.dll //CLIENT/foo.../*.dll
link|flag
While this works, it's not very useful as you will have to put these lines in to every workspace you ever create. – dgrant Nov 3 at 18:37
@dgrant: How can you say this is not useful when it does what was asked? So what if you have to put it in every workspace? How hard is it to copy and paste some text? – raven Nov 3 at 20:12
vote up 0 vote down

I tried to use this to ignore the "target" folders that maven generates when doing a "diff against" operation in P4V. It's almost working, but when I switch to "View as flat list" I still see all of the excluded files. The tree view seems to work, but without an "expand all" button it's a real pain in the butt to navigate.

-//depot/.../target/.../* //CLIENT/.../target/.../*

Anyone know if there's a way to tweak the list view or expand all the changes in tree view?

Thanks in advance!

link|flag
2  
for best results, you might want to add this as a new question, referencing this question in the description – akf Oct 16 at 16:05
vote up 1 vote down

but a solution that can be checked in (like .p4ignore or .svnignore files) would be better, since you have to do this once and all participating developers of that project would use the same filters, that can be changed and adjusted over time according to project evolution...

link|flag
vote up 2 vote down

Will's suggestion of using .p4ignore only seems to work with the Websphere Studio (P4WSAD) plugin. I just tried it on my local windows box and any files and directories that I listed were not ignored.

Raven's suggestion of modifying your client spec is the correct way under Perforce. Proper organization of your code/data/executables and generated output files will make the process of excluding files from being checked in much easier.

As a more draconian approach, you can always write a submit trigger which will reject submission of changelists if they contain a certain file or files with a certain extension, etc.

link|flag
1  
I completely disagree with the whole "Proper organization of your code..." statement. The fact of the matter is, following Perforce's convention of editing the workspace requires every user to make the change. Whereas, a true .p4ignore file would only be created/managed once. – Mike Aug 17 at 17:38
1  
Oh, and not to mention, you like to branch your code? Good luck maintaining your workspaces for each branch. That sounds like fun! – Mike Aug 17 at 17:41
vote up 2 vote down

From the manual:

To exclude files from source control: in the directory where the files reside, create a text file named .p4ignore and enter the directories and file names you want to exclude. When you specify a directory, all its subdirectories are ignored. You cannot use wildcards in .p4ignore files.

link|flag
This is what concerns me about this site. Have you tried this? I have. It doesn't work. – raven Sep 13 '08 at 23:29
1  
I just tried it. It works for me. My .p4ignore is a single line with ".idea *.log *.pid" and sure enough, it refuses to add files in the .idea directory or with .log or .pid on the end. – parsenome Aug 7 at 15:22
5  
It only works for the Eclipse Perforce plugin. P4, P4V, and P4Win do not support .p4ignore files. – Mike Aug 17 at 17:48

Your Answer

Get an OpenID
or

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