Git stash

git stash save "<message>" will stash and the save the message of stash. git stash list will show list of all stashes and their messages.  git stash show stash@{<stash number>} will show the change of the stash number. git stash apply stash@{<stash number>} will apply the stash number on the working directory. git stash drop stash@{<stash … Continue reading Git stash