Skip to content

Commit

Permalink
Update Exercise2-StagingAndStashing.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Solona Armstrong authored Dec 4, 2017
1 parent 76e0330 commit 7765d63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/Exercise2-StagingAndStashing.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ This mechanism is how git knows that the contents of the staging area have chang


### Step 3 - Unstage your Change
Say you made a mistake while staging your changes and want to start the staging process over, but without losing the changes to your file. Use `git reset` to remove the files from the staging area, without changing the file in the working area. Use `git status` to see that our modifications to `hello.txt` are still there, but they're no longer stages for commit.
Say you made a mistake while staging your changes and want to start the staging process over, but without losing the changes to your file. Use `git reset` to remove the files from the staging area, without changing the file in the working area. Use `git status` to see that our modifications to `hello.txt` are still there, but they're no longer staged for commit.

```
$> git reset hello.txt
Expand Down

0 comments on commit 7765d63

Please sign in to comment.