Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
July 30, 2021 04:52 pm GMT

Visualising Changes With Semantic Git Differences

Yay you receive a notification for a code review in a pull request on GitHub. You open the files changed tab on GitHub and there it is: a basic UI showing you nothing more than a git diff. Surely, there is a better way to look at the changes, including comments, and navigate to them, right?

git diff is a great tool used by millions of developers every day. One of the ways developers consume it is through the UI of GitHub, GitLab, or Bitbucket when you doing a code review.

Unfortunately, what you see is literally what you get out of the git command.

For example, here is what you see on GitHub.com for the following pull request of the google/guava project:

Files changes in google/guava #3304 Unhandled overflow in the concat() method of per-type primitive utility classes

We believe that in 2021, developers deserve better than having to exhaustively check textual diffs and try to reverse engineer the context of the changes.

So we have incorporated into Reviewpad a special diff operation that captures an overview of the changes at the semantic level:

Reviewpads Explore Tree. Try our beta

Reviewpads Explore Tree. Try our beta at beta.reviewpad.com.

The Explore Tree was designed to immediately answer the following questions:

  • From the list of modified files, which have changes that involve semantic changes and how many changes occurred?
  • Which semantic objects (e.g. methods and classes in Java) were modified and which type of modification (added, removed, or changed)?
  • Which files or symbols contain comments?

Answering these questions has saved us a lot of review time as the tree also acts as an index into the diff, and allows us to navigate directly into it.

Interactions with the Explore Tree for Google / Guava #3304 Unhandled overflow in the concat() method of per-type primitive utility classes. Check it out on beta.reviewpad.com/review/github.com/google/guava/pull/3304.

In order to compute the Explore Tree, Reviewpad performs a semantic diff of two versions of the file, restricted only to the hunks associated with the git diff. From there, the challenge is to understand which symbol (function, method, class, type, etc) is associated with this change. Well write more details about the analyser in a future post.

Cool. How do I check this out by myself?

We have a public beta version of Reviewpad available at beta.reviewpad.com. You will need to create a new account and once you log in for the first time, you will see the following page to connect to a code host:

Connect to code host page on Reviewpad.

Connect to code host page on Reviewpad.

You can connect to GitHub through our OAuth app or manually add a personal access token. The OAuth requires minimal scopes to be able to read and comment on public repositories.

And voil you are ready to get started with Reviewpad!

Our semantic analysis works for more than 10 languages including: C, C++, C#, Go, Haskell, Java, Javascript, Proto, Python, Ruby, Rust, Swift and TypeScript.

We are adding more and more open source projects in different languages so that you can check it out easily. Feel free to reach us on our community Slack with requests!


Original Link: https://dev.to/reviewpad/visualising-changes-with-semantic-git-differences-3omh

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To