Context: For my Android project I have a lot of resources, which slow down my build. I've deleted those files from my filesystem to speed up the build process. But of course GIT sees those changes, and fills up my Sourcetree GIT client making it hard for me to see the actual code changes I make.
I was thinking a solution could be adding these resource files to .gitignore. So I've created a .gitignore file in the res/ folder and committed it. But when I deleted the resource files, GIT still saw them as changes. I think this is because the files are already under GIT control. UPDATE: The file deletions may not be committed, because that will delete the resource files from de development branch when I merge my feature branch.