git stash or git stash save code example
Example 1: git stash file
# git stash specific file
git stash push <path>
Example 2: git save to stash
git stash save "name to describe stashed content"
# git stash specific file
git stash push <path>
git stash save "name to describe stashed content"