git stash changes code example
Example 1: git stas hauntracked files
git stash --include-untracked
Example 2: git stash apply specific stash
git stash apply "stash@{n}"
or
git stash apply n
Example 3: git stash clean command
git stash clear
Example 4: stash clear list
git stash clear // to clear the whole list
Example 5: how to stash changes git
$ git stash
Saved working directory and index state WIP on master:
2dfe283 Implement the new login box
HEAD is now at 2dfe283 Implement the new login box
Example 6: 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}