Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show both tags and branches in Bitbucket under commits view

Tags:

git

bitbucket

Yesterday I started using tags in git for the first time.
Now when I go to Commits/All branches in Bitbucket, it only shows the tags, whereas before, it had a branch name next to each commit.

You can see in this image, next to the "Merge branches 'develop' and 'release'" it only has a tag, it used to only omit "master" now it omits all branches(I have added in red what it should say)

I am looking to reenable that functionality, I want it to show both tags and branches there.

like image 288
Trav Easton Avatar asked Aug 04 '15 06:08

Trav Easton


People also ask

How do I see all commits on a branch in Bitbucket?

on left hand side of the repository page you will notice an option commits. if you click on it it will display all commits on that branch.

How do I show diff in Bitbucket?

From the sidebar, click Compare. In the Compare page, from both the Source and Destination dropdown, select any combination of branches, tags, or commits. Once selections are made, the comparison results display in a diff and a commits list tab.


1 Answers

In Bitbucket go to Commits. In the dropdown at the top of the page if you don't see the Show All link beside the dropdown, click on one of the branches in your list of branches in the dropdown. This will cause the Show All link to appear, just click on the Show All link and all your branch names will appear in the history below the dropdown.

All this does is change the url

Before https://bitbucket.org/USERNAME/REPOSITORY_NAME/commits/branch/master

After https://bitbucket.org/USERNAME/REPOSITORY_NAME/commits/all

like image 143
Ricky Keane Avatar answered Oct 12 '22 19:10

Ricky Keane