I have a .properties
file already committed and would like to stop tracking changes made to it. Each user who clones the project will configure it their way.
I tried this command:
git rm --cached application/src/main/resources/props/services.properties
It does not return any error or success messages, I do not know if I should either.
But even so, after this command, if I make any changes to the file git finds the difference and lists the file as modified. What am I missing?