Home > Back-end >  Does Bitbucket allow you to "View blame prior to this change", like in Github?
Does Bitbucket allow you to "View blame prior to this change", like in Github?

Time:07-08

On Github, when you blame a file, you can see all the commits, annotated on the left hand side. They also have a very helpful link called "View blame prior to this change", which allows you to go to the blame of the same file prior to the commit you clicked on:

In Github: View blame prior to this change

It allows you to very quickly traverse the git history of a file, and get to the root cause of a bug/problem.

Is there an equivalent feature in Bitbucket?

CodePudding user response:

Not on bitbucket.org.

There is an "annotate" option for the blame view, but without the "prior to this change" feature.

Each annotate line has its own commit reference: you can click on that commit, then diff, and you will see what was before that commit. Not as straightforward as GitHub.

  • Related