1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Apparently, git has an i instead of an e.

This commit is contained in:
jbranchaud
2015-12-18 14:47:40 -06:00
parent 4bc5ba7daf
commit 65e30fc922

View File

@@ -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.