Reputation: 12532
How do I do a diff between 2 tags without checking out both tags?
Upvotes: 1
Views: 278
Reputation: 2539
For a summarized diff, start the repo browser, highlight both the tags you want to compare, right click and choose "compare revisions". This lists the files/folders changes.
If you need the exact file-wise line differences in a text file, you can opt for "show differences as unified diff"
Upvotes: 2
Reputation: 224129
How do I do a diff between 2 tags without checking out both tags?
This can be interpreted as if checking out one tag is fine:
Check out one tag. Right-click on the folders while pressing SHIFT, select "Diff with URL", and enter the other tag's URL.
Upvotes: 1
Reputation: 108557
You just want to diff two folders right?
Right click on the 1st folder, Select "Mark for comparison"
Right click on the 2nd folder, select "Show differences as unified diff"
Upvotes: 4
Reputation: 39733
Start the Repository Browser, navigate to the newer tag and use the context menu to show the log. Disable the checkbox 'stop on copy'. Select both revisions to compare and use the context menu again to actually do the compare.
Upvotes: 3
Reputation: 12532
Go to Revision Graph.
CTRL-click on the 2 revisions where the tags were marked.
Right-click, select "Compare Revisions"
Upvotes: 0