I'm using git as my version control tool. I have a local.properties file in my remote repository. Every team member has to have this file but git should ignore this file only in terms of changes - not existence. I tried adding this file to .gitignore file (the one in the root directory), but it seems like git is ignoring this request... since I (or any other team member) can still commit and push changes on this file.
What am I missing?
Thanks