git stash
Temporarily stores all the modified tracked files
Subcommands
Name | Description |
---|---|
push | Save your local modifications to a new stash entry and roll them back to HEAD |
show | Show the changes recorded in the stash entry as a diff |
save | Temporarily stores all the modified tracked files |
pop | Restores the most recently stashed files |
list | Lists all stashed changesets |
drop | Discards the most recently stashed changeset |
clear | Remove all the stash entries |
apply | Like pop, but do not remove the state from the stash list |
branch | Creates and checks out a new branch named |
create | Creates a stash with the message <msg> |
store | Store a given stash in the stash ref., updating the staft reflog |