Tool
Syntax Trick @{}, ^, ~ And .. In Git Commands
Let’s read the history of user’s commitment by $ git log firstly. @{ } We can find details information about these commits by order with syntax @{ }. $ git show HEAD@{0} $ git show HEAD@{1} $ git show HEAD@{2} Read more…