Does Bitbucket allow you to "View blame prior to this change", like in Github?
Asked Answered
D

1

6

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?

Drysalter answered 8/7, 2022 at 1:48 Comment(0)
A
3

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.

Athapaskan answered 8/7, 2022 at 4:44 Comment(1)
Yeah I was worried that's the case. I think I'll pursue traversing git history using the IDE instead then, which is more powerful that that. A shame though - Github's done well with that feature, also showing the commit comment inline too.Drysalter

© 2022 - 2024 — McMap. All rights reserved.