Process Flow - Stashing specific files
Modify files in working directory
Select specific files to stash
Run git stash push -m "msg" -- <files>
Git saves changes of selected files
Working directory: selected files reverted, others unchanged
Later: git stash list to see stash
Apply or drop stash as needed
This flow shows how to stash changes from only certain files, leaving others untouched, then manage the stash later.