Based on this question / answers How to list commits since certain commit? I want to get commits from specific <commit-hash>
, including this <commit-hash>
commit.
Using this command:
git log <commit-hash>^..HEAD --pretty=oneline
I get result with <commit-hash>
not being the last line of the output.
What can be reason of this?