0

I am interested in Github ignoring some files, especially the debug binaries under the \bin and \obj directory.

My .gitignore is under the \Github\Grasshopper-Tools directory, and inside I have this snippet which theoretically should ignore them:

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
x64/
build/
bld/
[Bb]in/
[Oo]bj/

enter image description here

Am I missing anything?

theGreenCabbage
  • 5,197
  • 19
  • 79
  • 169

1 Answers1

0

You need to add * after / for ignore all file inside a directory. In your case, ignore all bin folder will be bin/*

Also, you could use a template for c# project. See this template: https://gist.github.com/kmorcinek/2710267

  • I have replaced my old one with the one in that link, but it still seems to not ignore them o.O http://puu.sh/6EUbJ/7ad1a6b235.png – theGreenCabbage Jan 31 '14 at 15:08