git has a different solution to do this. First change the file you do not want to be tracked and use the following command: git update-index ...
Or put otherwise, don't track changes for a specific file. Obviously
I don't think it is intended nor possible via git. I would recommend to hierarchically load the paraemter files. You either load parameters.file or, ...
Customize which files Git tracks through the gitignore feature.
ignore all .a files *.a # but do track lib.a, even though you're ignoring .a files ...
To be clear, what this command means is: You want to keep these files on your hard drive, but you don't want Git to track them any more. (I ...
confing git
add -f
Add all the files, individually or in a folder, that you want to remove from the repo but keep locally to .gitignore. Execute git
uw-madison-datascience.github.io
On branch master
Untracked files: (use "git add
A Quick Guide for Making a Git Ignore (.gitignore) File for Jupyter Notebook