GIT - Stashing into a Branch


Podemos usar el alijo para mover cambios accidentales a una rama de función.

Command Listing


pwd
git status
git stash list
clear
mate
mate simple.html
mate humans.txt
git status
git add index.html
git status
mate new.md
git status
git stash -u
git status
clear
git stash branch newchanges
git stash list
git status
rm new.md
git add .
git status
git commit
git checkout master
git merge newchanges
git branch -d newchanges
git branch
clear


Publicar un comentario

0 Comentarios