How to compare two tags with git?

后端 未结 4 1300
挽巷
挽巷 2020-11-28 17:04

I would like to do a diff between two tags and committed changes between those two tags. Could you please tell me the command?

4条回答
  •  -上瘾入骨i
    2020-11-28 18:05

    $ git diff tag1 tag2
    

    or show log between them:

    $ git log tag1..tag2
    

    sometimes it may be convenient to see only the list of files that were changed:

    $ git diff tag1 tag2 --stat
    

    and then look at the differences for some particular file:

    $ git diff tag1 tag2 -- some/file/name
    

    A tag is only a reference to the latest commit 'on that tag', so that you are doing a diff on the commits between them.

    Also, a good reference: http://learn.github.com/p/diff.html

提交回复
热议问题