vote up 23 vote down star
29

What is the best (or as good as possible) general SVN ignore pattern to use?

There are a number of different IDE, editor, compiler, plug-in, platform, etc. specific files and some file types that "overlap" (i.e. desirable for some types projects and not for others).

There are however, a large number of file types that you just never want included in source control automatically regardless the specifics of your development environment.

The answer to this question would serve as a good starting point for any project - only requiring them to add the few environment specific items they need. It could be adapted for other Version Control Systems (VCS) as well.

flag

12 Answers

vote up 1 vote down

Used for my Visual Studio projects

*/bin */obj *.user *.suo

You can expand more file types from there.

link|flag
I saw a similar list earlier today -- what's the difference between */bin and just bin? Assuming you want to ignore the whole folder. – harpo Sep 17 '08 at 17:03
Read section 5.13. Ignoring Files And Directories of the TortoiseSVN help file. – icelava Sep 18 '08 at 14:31
1  
tortoisesvn.net/docs/release/… There it says that you shouldn't include a / or \, and that including them is a legacy of earlier versions – Simon D Jul 9 at 15:33
vote up 20 vote down check

I'll add my own two cents to this question:

I use the following SVN ignore pattern with TortoiseSVN and Subversion CLI for native C++, C#/VB.NET, and PERL projects on both Windows and Linux platforms. It works well for me!

Command Line (Copy and Paste):

*.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store thumbs.db Thumbs.db *.bak *.class *.exe *.dll *.mine *.obj *.ncb *.lib *.log *.idb *.pdb *.ilk *.msi* .res *.pch *.suo *.exp *.*~ *.~* ~*.* cvs CVS .CVS .cvs release Release debug Debug ignore Ignore bin Bin obj Obj *.csproj.user *.user

Formatted for Answer Display:

*.o *.lo *.la #*# .*.rej *.rej
.*~ *~ .#* .DS_Store thumbs.db 
Thumbs.db *.bak *.class *.exe *.dll
*.mine *.obj *.ncb *.lib *.log 
*.idb *.pdb *.ilk *.msi* .res *.pch *.suo 
*.exp *.*~ *.~* ~*.* cvs  CVS .CVS .cvs 
release Release debug Debug
ignore Ignore bin Bin obj  Obj
*.csproj.user *.user
link|flag
@blorgbeard - I'm rolling back your formatting changes because I believe it's preferrable to have it all on one line for copy/paste into the SVN configuration file (which doesn't accept multi-line input). – Burly Jul 12 at 16:25
Tweaked it . – George Stocker Jul 17 at 17:11
1  
What about *.tmp *.temp? – Bob King Jul 17 at 17:15
1  
Also, if you do WPF *.g.vb *.g.cs *.baml *.GenerateResource.Cache *.cache – Bob King Jul 17 at 17:15
vote up 3 vote down

Windows users might want to throw in desktop.ini and thumbs.db.

link|flag
vote up 1 vote down

Visual Studio (VC++) users definitely need to exclude the .ncb files

link|flag
vote up 5 vote down

Every time I come across a file I generally do not want in the repository, I update the pattern. I believe there is no "best" pattern - it always depends on the language and environment you develop in.

Moreover, you're not very likely to think of all the possible "ignorable" filetypes - you'll always encounter a filetype you simply forgot to include. Thats why updating the pattern as you go works the best.

link|flag
I agree there is no "best" pattern in the absolute sense, which i why I added the (or as good as possible). You are correct, you won't enumerate all of them and it does depend on the lang & env, which I also stated. However, there are a large number you can knock out right off the bat. – Burly Sep 17 '08 at 17:10
Also while adding them as you go works alright for single developer environments, when you have multiple developers on a project, having a common project ignore pattern is desirable. You want to have to update it as infrequently as possible, so you want to knock out as many as possible up front – Burly Sep 17 '08 at 17:10
Of course, the usual pattern of *.bin *.bak *.pdb *.suo etc etc must be set up front, I agree. But once you set the ignore properties on a repository folder, they do effectively become shared - although I am aware this is not exactly what you meant. – petr k. Sep 17 '08 at 17:21
vote up 0 vote down

Mac users probably want to throw in .DS_Store. In addition, if there are dev's using Emacs or Vim, you probably want to add ~~ and ##.

link|flag
vote up 0 vote down

The pattern depends on which operating system you're using.

On Linux, you'll want to block *.o, *.so, *.a, and *.la to begin with. You may also want to block *~ (backup file from editing) and #*# (emacs backup from a crash).

On Windows, you'll want *.obj, *.lib, and *.dll at the very least.

Any other files you need to block depend on your IDE, editor, and compiler.

link|flag
vote up 1 vote down

For Eclipse, I use:

bin
.*

.* gets all the project configuration. You almost never want to check in a 'hidden' directory or file, but if it comes up, you can still svn add it.

link|flag
vote up 1 vote down

Since you may be using third party libs and dll's as part of the project(s) then I don't see the wisdom in blocking *.lib and *.dll from the repository. These are the things that are meant to be stored in the repository.

link|flag
2  
When using third party libs, dlls, exes, etc. just explicitly add them. If you want to a do an entire 3rd party tree, just temporarily disable the ignore pattern. You don't want these types being picked up implicitly during day-to-day development however, hence their inclusion in the pattern. – Burly Oct 9 '08 at 15:18
vote up 0 vote down

I am trying to use TortoiseSVN Settings, as described by @Burly's answer, but a) I have to exclude from the commit list the types I don't want to store, and b) it leaves most of my source folders marked as 'modified'... Am I missing something basic? Or is it better to just store all the file types? Thanks in advance.

link|flag
I'm not sure I understand what issue you are running into. The ignore pattern should be added to the TortoiseSVN Settings "Global ignore pattern:" and in the Subversion configuration file in the "global-ignores" section. – Burly Mar 8 at 21:57
This will cause TortoiseSVN to automatically ignore all files that match and thus, not store any of them in your repository. Think of this as blacklist of things you don't want stored in your repo. "Allow all, deny blacklist" – Burly Mar 8 at 21:58
Ah! I didn't know about the config file - that's probably the answer! Do you have any opinions about which types to ignore - in, say, the Windows environment? E.g. .dll, .bin, .cache, etc. TIA – Paul Morrison Mar 9 at 1:37
The list above should suffice as a good starting point, regardless of platform. The items that are *nix specific tend never to exist in a Windows environment. That said, everything starting with thumbs.db and there after are fairly windows specific. Hope that helps! – Burly Mar 9 at 14:54
Thanks, @Burly! It's starting to look pretty good! It seems to be the combination of the two - plus the "Delete (keep local)" function - that does the trick! – Paul Morrison Mar 9 at 18:45
show 1 more comment
vote up 2 vote down

Based on Burly's ignore pattern, I have added ReSharper to the ignore list

*.o .lo .la ## ..rej .rej .~ ~ .# .DS_Store thumbs.db Thumbs.db *.bak *.class *.exe *.dll *.mine *.obj *.ncb *.lib *.log *.idb *.pdb *.ilk .msi .res *.pch *.suo *.exp .~ .~ ~. cvs CVS .CVS .cvs release Release debug Debug ignore Ignore bin Bin obj Obj *.csproj.user *.user ReSharper. *.resharper.user

3/7

link|flag
vote up -1 vote down

My ignore pattern for Visual Studio:

*/bin */obj */Release */Debug *.suo *.err *.log *.obj *.bin *.dll *.exe *.LOG *.user *.pdb [tT]emp [tT]empPE Ankh.Load thumbs.db *.resharper *.vspscc *.vsssccc *.scc */ReSharper */ReSharper. bin obj *.resharperoptions *.db *.bak *ReSharper *.snk logs output TestResults

link|flag

Your Answer

Get an OpenID
or

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