Answers for "git reapply stash"

7

how to unstash git stash

git stash pop
Posted by: Guest on July-06-2020
1

apply stash git

# git stash apply takes a stashed change and applies it to your current working
# tree (also leaving it on the “stash stack”). git stash branch creates a new
# branch from the same commit you were on when you stashed the changes,
# and applies the stashed changes to that new branch.
USAGE:
git checkout stash@{index} -- <filename> #stash particular file
e.g. git stash apply stash@{0} #applys whole of most recent stash
Posted by: Guest on November-24-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language