Merge branch '62618-docs-feedback-unstage-page-needs-clarification' into 'master'

Resolve "Docs feedback: unstage page needs clarification"

Closes #62618

See merge request gitlab-org/gitlab-ce!29113
This commit is contained in:
Achilleas Pipinellis 2019-06-04 09:10:40 +00:00
commit 5915dec667

View file

@ -8,13 +8,13 @@ comments: false
## Unstage
- To remove files from stage use reset HEAD. Where HEAD is the last commit of the current branch.
- To remove files from stage use reset HEAD where HEAD is the last commit of the current branch. This will unstage the file but maintain the modifications.
```bash
git reset HEAD <file>
```
- This will unstage the file but maintain the modifications. To revert the file back to the state it was in before the changes we can use:
- To revert the file back to the state it was in before the changes we can use:
```bash
git checkout -- <file>