I have two files I would like in the repository (they are included in clone and update), so everybody has access to these scripts. But I want that changes in them are not tracked and they are never automatically committed (by anyone).
If I put them in the gitignore file and remove them from the repository (and keep a local copy with --cached), then they are not accessible to others anymore.
Am I overlooking a simple way to use the gitignore function to achieve this?
edit: These files are plotting scripts with three parameters in the beginning (which are edited and run locally). Most of the time nothing else in the script changes (and if it did it would be worthy of a commit).