If you would like to stash only some diffs in your working set, you can use a partial stash.
git stash -p
And then interactively select which hunks to stash.
As of version 2.13.0 you can also avoid the interactive mode and create a partial stash with a pathspec using the new push keyword.
git stash push -m "My partial stash" -- app.config