I am executing a command to get a commits between two tags:
git log --merges '7.0.8'...'7.0.9' --oneline
Apart from commits that are between these two tags, I also receive some commit that was made before 7.0.8 tag and it`s laying between 7.0.7..7.0.8
Here are the commits that I get:
All the commits that under yellow line are laying after 7.0.8
It`s a bit confuse me, since I have task to retrieve commits between two tags.
Here screenshot of Git History from repository in GitLab:
I am expected to see the last commit in output “3f5c081”, but for now it`s not clear to me why i see commits that should appear when executing command:
git log --merges '7.0.7'...'7.0.8' --oneline
Maybe someone can explain this behavior?
I expect to see only commits made in range 7.0.8..7.0.9