Reputation: 1210
I have a current commit and want to check the code difference with one of the previous tags. I can run this in the console:
git diff my_tag
But I want to see it in the AppCode UI. I can make a new branch from my tag and then launch diff. But, I don't want to do it. I want to launch the diff with my tag without additional steps.
I did not find a context command in AppCode that will help me to do it. So, I think I need to launch it through console and pass it to AppCode.
Can someone tell me how to do it?
Upvotes: 3
Views: 185
Reputation: 19573
VCS > Git > Branches > Checkout Tag or Revision
VCS > Git > Compare with Branch... > master
Upvotes: 1