.gitignore on vvvv-sdk

Hi all

.gitignore

alg (and a little bit of I) put together the folowing .gitignore for use with VVVV projects:

- OS junk files
[Tt](Tt)humbs.db
*.DS_Store

- Visual Studio files
*.[Oo](Oo)bj
*.user
*.aps
*.pch
*.vspscc
*.vssscc
*_i.c
*_p.c
*.ncb
*.suo
*.tlb
*.tlh
*.bak
*.[Cc](Cc)ache
*.ilk
*.log
*.lib
*.sbr
*.sdf
*.opensdf
ipch/
obj/
[Bb](Bb)in
[Bb](Bb)uild
[Dd](Dd)ebug*/
[Rr](Rr)elease*/
Ankh.NoLoad

- Tooling
_ReSharper*/
*.resharper
[Tt](Tt)est[Rr](Rr)esult*

- Archives
.zip
.7z

- Subversion files
.svn

- Office Temp Files
~$*

- VVVV bcp
*~.xml

- dll's
*.dll

- media files
*.avi

The current .gitignore on vvvv-sdk is:

vvvv.exe
vvvv.rsm
vvvv.map
*~.xml
*.csproj.user
obj/
bin/
*.suo
UpgradeLog.XML
Backup/
_UpgradeReport_Files/
*.log
vvvv_*.zip
addons_*.zip

Perhaps the current one is sufficient (even though it doesn’t explicitly avoid things like .pdb files). Also of course the strategy is different in vvvv-sdk, so different things should be omitted. Anyway, check @alg’s list out and see if there’s anything useful to be done to the one ine vvvv-sdk

How’d that get on the git?

However, there’s lots of stuff on the git that shouldn’t be there (like obj folders). Perhaps these went up before the gitignore?
e.g. try

find . | grep obj/

whilst in the root of the vvvv-sdk

are these to be cleaned up later?

nothing urgent of course
but eventually these things would be great to tidy up

that looks reasonable. Also, at https://github.com/github/gitignore you can find a comprehensive list of pre-made gitignore for several situations/languages/IDEs/OSes.