git stash push -m "message" // use for code added in statsh
git stash list // use for check stash list
git stash apply stash@{index}
# git stash specific file
git stash push <path>
// What is stash changes in git?
// git stash temporarily shelves (or stashes) changes you've made to your working copy
// so you can work on something else, and then come back and re-apply them later on.
git stash
git stash save myWork
git stash show -p > myWork.txt