stash local changes git code example

Example 1: git view stash

git stash show -p stash@{1}

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: how to stash changes and use in another brunch

git stash
git checkout -b xxx
git stash pop

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

Tags:

Html Example