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
In my case, bin and obj folders were nested under Project folder from the root .gitignore file, so I had to add it like below:
[PROJECT_FOLDER_NAME]/bin [PROJECT_FOLDER_NAME]/obj
Replace PROJECT_FOLDER_NAME with your project folder name