№8
Пример работы с гит stash
$ git status
Changed but not updated:
modified: b
deleted: c
modified: d
Untracked files:
j
$ git add .
$ git stash
Saved working directory and index state WIP on master: b11a467 commit 1
HEAD is now at b11a467 commit 1
$ git status
On branch master
nothing to commit (working directory clean)
$ git stash pop
Changes to be committed:
new file: j
Changed but not updated:
modified: b
deleted: c
modified: d