how to stash a file in git code example
Example 1: git stash example
git stash push -m "message" // use for code added in statsh
git stash list // use for check stash list
git stash apply stash@{index}
Example 2: git stash file
# git stash specific file
git stash push
Example 3: git save to stash
git stash save "name to describe stashed content"
Example 4: aad a single file to stash
git stash push -m welcome_cart app/views/cart/welcome.thtml
Example 5: stash specific files git
git stash push -m welcome_cart app/views/cart/welcome.thtml