Hi,
I'm using Git for versioning and I'd like to keep my repo clean and not bloated with unnecessary files. In my ASP.NET MVC 5 application I have two folders called 'bin' and 'obj'. I'm wondering if I can remove them from the
repo (untracking those files/folders) without any side effects? For instance if someone else clones the repo and try to run it, it should still run and obviously not crash. So I guess what I'm asking is if it's something VS can generate itself?
I'm using github with this project and for some reason the .gitignore file (the standard one for VS) didn't work and files such as .suo appeared and I had to remove it myself which was annoying because now I'm not sure if there's a whole bunch of other useless
stuff.
Any tips for what should not be included also and can I safely delete the bin and obj folder?
ps. I couldn't find a proper forum to post in so I thought this would ...
Go to the complete details ...