Reputation: 425
In git using eclipse i want to current commit of one Branch to the previous version different Branch.
Using "Compare With" option in eclipse, i was able to compare with different branch or with same branch previous versions. But i want to compare with different branch's previous version.
For e.g Branch A has 3 commits aa ab and ac. Branch B has 3 commits ba bb and bc.
I want to compare branch B's bc commit (latest) with Branch A's aa commit (not with command line)
Upvotes: 1
Views: 4504
Reputation: 1
This will bring up the two versions you would like to compare
Upvotes: 0
Reputation: 520978
It appears that the eGit plugin supports what you want to do:
Comparing Two Commits
The trick will be in finding the commit graph view so that you can manually choose the bc
and aa
commits from your two branches.
Upvotes: 1