Is there a way to "freeze" a file in Git?
- by Suan
I'm in a situation where I want to open source my project, however there's a single source file that I want to release a "clean" version of, but use a separate version locally. Does git have a feature where I can just commit a file once, and it stops looking for changes on that file from now on?
I've tried adding the file to .gitignore, but after…