Created
September 25, 2013 10:04
-
-
Save krebernisak/6697591 to your computer and use it in GitHub Desktop.
All commits between two tags/commits
@ezarko 👍
Thanks! This helped me a lot today!
git rev-list --count [TAG1]..[TAG2]
works for me (git version 1.8.3.1)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
git diff [] [--] […]
This is to view the changes between two arbitrary .
git diff [] .. [--] […]
This is synonymous to the previous form. If on one side is omitted, it will have the same effect as using HEAD instead.
git diff [] ... [--] […]
This form is to view the changes on the branch containing and up to the second , starting at a common ancestor of both . "git diff A...B" is equivalent to "git diff $(git merge-base A B) B". You can omit any one of , which has the same effect as using HEAD instead.