I want to ignore bin and obj folders from my git repository. As I\'ve found out, there is no easy way to do this in .gitignore. So, are there any other way? Using clean solu
simply making an entry in gitignore may not ignore files, you may need to commit it. I used the following method and worked for me
git rm -r --cached . git add .
then
git commit -am "Remove ignored files"
However, this ignores my scripts folder which I included later into the repository.