diff --git a/git/resetting-a-reset.md b/git/resetting-a-reset.md index e5dd553..5963350 100644 --- a/git/resetting-a-reset.md +++ b/git/resetting-a-reset.md @@ -18,7 +18,7 @@ We can see that `HEAD@{1}` references a time and place before we destroyed our last commit. Let's fix things by resetting to that. ```bash -$ get reset HEAD@{1} +$ git reset HEAD@{1} ``` Our lost commit is found.