Kirow
Kirow

Reputation: 1210

How to launch git diff in AppCode UI?

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

Answers (1)

Nicky McCurdy
Nicky McCurdy

Reputation: 19573

  1. VCS > Git > Branches > Checkout Tag or Revision
  2. Type in the name of the tag and click OK.
  3. VCS > Git > Compare with Branch... > master

Upvotes: 1

Related Questions