I'm not sure if what I'm looking for is a git-stash
but here is what I want to do.
I have configuration files customized for local use. Those files already exist in Git. Now, if I add a new feature (change other files), I want to stash my config and hit commit and only commit the files related to my new feature.
If I use git-stash, it stashes everything. How can I stash my config files (only)?
Thanks