I'm working with this setup at the moment. I have 3 changed files that contains mostly environment variables such as Jwt tokens, cloud hosting variables, etc. The changes are mostly of this kind: empty string --> my env variable
I won't ever include them in a commit because, obviously, each member of our team have them different from the other.
But it's pretty annoying in my workflow.
I can't stash them permanently because I want that the changes in those 3 files affect my local application.
I have to stash them and then stash pop
to have them back, every single time I switch branch.
Somehow, I want Git to assume them as changed in every branch of my local repository without keeping them unstaged all the time... Have them untracked even if I changed the files.
Thank you.