To save a change without commit. This is to enable checkouts.
To see the list of stashed changes.
To apply the saved change.
To delete the stashed changes.
Reference : http://book.git-scm.com/4_stashing.html
git stash save "Your comments"
To see the list of stashed changes.
git stash list
To apply the saved change.
git stash apply
To delete the stashed changes.
git stash clear
Reference : http://book.git-scm.com/4_stashing.html
Comments
Post a Comment