From 82ec9d32c1fc2d5dc258eda73c7b175b98c092be Mon Sep 17 00:00:00 2001 From: Hugo <1h.lust.hugo@gmail.com> Date: Fri, 2 Apr 2021 13:54:44 +0200 Subject: [PATCH] Adding git stash --- readme.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index c4f5b0c..443a726 100644 --- a/readme.md +++ b/readme.md @@ -200,4 +200,14 @@ set an email address that will be associated with each history marker >git config --global color.ui auto -set automatic command line coloring for Git for easy reviewing \ No newline at end of file +set automatic command line coloring for Git for easy reviewing + +### Saving your uncommitted work for a quick fix then getting it back + +>git stash + +temporarily stash your work since your last commit + +>git stash pop + +fetch your stashed work to continue it \ No newline at end of file