Commit df2486b0 authored by Zeff Morgan's avatar Zeff Morgan

Update unstage doc to clarify reset

parent 9a9c947b
...@@ -8,13 +8,13 @@ comments: false ...@@ -8,13 +8,13 @@ comments: false
## Unstage ## 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 ```bash
git reset HEAD <file> 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 ```bash
git checkout -- <file> git checkout -- <file>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment