Differences
This shows you the differences between two versions of the page.
docs:git:stash [2012/05/04 17:41] – created billh | docs:git:stash [2012/11/14 16:20] (current) – billh | ||
---|---|---|---|
Line 7: | Line 7: | ||
* apply stash to current working directory, removing the stash if successful< | * apply stash to current working directory, removing the stash if successful< | ||
* delete a stash< | * delete a stash< | ||
+ | |||
+ | ===== tips ===== | ||
+ | * I prefer to make branches, then just type git stash save; then, when I run git stash list it shows me WIP on < | ||
+ | * I prefer bash aliases for working with stashes | ||
+ | * gss = git stash save | ||
+ | * gsl = git stash list | ||
+ | * gsp = git stash pop | ||
+ | * gsa = git stash apply | ||