grimoire

personal wiki
git clone git://git.pyratebeard.net/grimoire.git
Log | Files | Refs

commit 9dad7f8ed2f572c0b2891e1a5defcce1cfe8b22a
parent 29a62df7eb99c22dbfa6e66d9adcba6670ace090
Author: pyratebeard <root@pyratebeard.net>
Date:   Thu, 14 Mar 2019 14:22:13 +0000

stash and unstash

Diffstat:
Mcoding/git.md | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/coding/git.md b/coding/git.md @@ -41,6 +41,17 @@ compare diff between two commits git diff <commit>...<commit> ``` +stash +``` +git stash +git stash show +``` + +unstash +``` +git stash pop +``` + ## using `hub` ### pull requests ```