I am using this .gitignore file in Mac OS X for my Android Studio project:
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
That works just fine there, but I have started using a Windows based machine where it seems this gitignore file is being ignored:
Any ideas why this is happening?
I have tried to modify forward slashes for back slashes, as Windows and Mac OS X represent paths in different ways, but it didn't work.
Thanks for your help.