Skip to main content

bb browse

Open Bitbucket pages in your default browser. Useful when the terminal output isn't enough and you want the full web UI.

Uses the platform's native opener (open on macOS, xdg-open on Linux, start on Windows).

bb browse repo

Opens the repository homepage.

bb browse repo
# → https://bitbucket.org/{workspace}/{repo}

bb browse prs

Opens the pull requests page.

bb browse prs
# → https://bitbucket.org/{workspace}/{repo}/pull-requests/

bb browse pipelines

Opens the pipelines dashboard.

bb browse pipelines
# → https://bitbucket.org/{workspace}/{repo}/addon/pipelines/home

bb browse branch [name]

Open a branch's page. Without an argument, uses the current local git branch (git rev-parse --abbrev-ref HEAD).

bb browse branch feature/login
bb browse branch # current branch

bb browse pr <id>

Open a specific pull request.

bb browse pr 42
# → https://bitbucket.org/{workspace}/{repo}/pull-requests/42