GIT - Managing Multiple Stashes


La característica de stashe de Git puede soportar múltiples stashes.

Command Listing


pwd
git status
clear
ls
mate simple.html
git stash save "simple changes"
clear
mate index.html
git stash save "index changes"
mate README.md
git stash save "Readme changes"
git stash list
git stash show stash@{1}
clear
git status
git stash list
git stash apply stash@{1}
clear
git status
git stash list
git stash drop stash@{1}
git stash list
clear
git stash list
git stash clear
git stash list
clear


Publicar un comentario

0 Comentarios