Adding git stash

This commit is contained in:
Hugo 2021-04-02 13:54:44 +02:00
parent 72a462cf76
commit 82ec9d32c1
1 changed files with 11 additions and 1 deletions

View File

@ -201,3 +201,13 @@ set an email address that will be associated with each history marker
>git config --global color.ui auto >git config --global color.ui auto
set automatic command line coloring for Git for easy reviewing 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