@
In Git, @ is an alias for HEAD.
HEAD
To replicate HEAD~1 and similar commands, extra ~ characters can be used. e.g. @~~ references the commit three commits ago (HEAD~2).
HEAD~1
~
@~~
[[git]]