GIT - Stashing Untracked Files / Using Stash Pop




Git no incluye archivos no rastreados (nuevos) con alijo por defecto.

Command Listing


pwd
git status
clear
git ls-files
mate humans.txt
git status
mate ANewFile.txt
git status
git stash
git status
git stash apply
git stash drop
git stash list
clear
git status
git stash -u
clear
git stash list
mate README.md
git commit -a
git status
clear
git stash pop
clear
git status
rm ANewFile.txt
git status
git commit -am "Updates to humans file after stash pop"
git status

Publicar un comentario

0 Comentarios