git stash
git stash save
git stash --include-untracked
git stash -u
git stash list
git stash show
git stash show -p
git stash show -u
git stash show --include-untracked
git stash show -p -u
git stash show -p --only-untracked
git stash show stash@{1}
git stash show stash@{1} -p
git stash show stash@{1} -u
git stash show stash@{1} --include-untracked
git stash show stash@{1} --only-untracked
git stash pop
git stash apply
git stash apply stash@{1}
git stash clear
git stash drop stash@{2}
git stash branch <branch_name>
git stash branch <branch_name> stash@{revision}