Adding git stash
This commit is contained in:
parent
72a462cf76
commit
82ec9d32c1
10
readme.md
10
readme.md
|
@ -201,3 +201,13 @@ 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
|
||||
|
||||
### 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
|
Loading…
Reference in New Issue