### 1. Unstaging a file
```sh
git add NewFile.txt
# to back the file in the untracked status
# перевод из состояния staged -> modified
{{c1::git reset HEAD NewFile.txt}}
```
### Unstaging rm
```sh
C:\Users\mcold\Dropbox\Git Projects\Exercises\Ch1-1>git status
On branch master
Initial commit
Changes to be committed:
new file: first.txt
new file: second.txt
# to back the file in the untracked status
# file second.txt
{{c2::git rm --cached second.txt}}
```