Skip to content

Latest commit

 

History

History

22_stash

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Git Stash

Stash your changes. (If you want to stash new files, do git add . first.)

$ git stash

List your stashes

$ git stash list

Pull out the latest stashed changes

$ git stash pop

Pull out a specific set of stashed changes

$ git stash pop <ref> # e.g. git stash pop stash@{1}

Wipe your stash

$ git stash clear