Reputation: 324
I am looking for a change that created a specific method in a class. It would be best if I could get the entire changeset associated with creating that method. Annotate only shows last change, which was some sort of refactoring. History for the class is just too large to make finding all changes of the method easy.
Upvotes: 4
Views: 1578
Reputation: 4787
If you identify the file that you are interested in, in source control and then right click, view History you can see all of the changesets that have altered the file.
You can highlight 2 changesets (ctrl + click) and run a comparison between the 2 changesets.
do this a couple of times and you should be able to isolate when the method was added. you can then right click on the changeset where the method was introduced and choose changeset details to view everything that was included with that changeset
Upvotes: 6