c# - Github not ignoring files under the \bin\ and \obj\ directory -
i interested in github ignoring files, debug
binaries under \bin
, \obj
directory.
my .gitignore
under \github\grasshopper-tools
directory, , inside have snippet theoretically should ignore them:
# build results [dd]ebug/ [dd]ebugpublic/ [rr]elease/ x64/ build/ bld/ [bb]in/ [oo]bj/
am missing anything?
you need add * after / ignore file inside directory. in case, ignore bin folder bin/*
also, use template c# project. see template: https://gist.github.com/kmorcinek/2710267
Comments
Post a Comment