I want to create a branch from an old commit so I can clone it locally on my PC and test that version.
I want to create a branch from an old commit so I can clone it locally on my PC and test that version.
I don't think Bitbucket Cloud offers a "create a new branch from a previous commit" feature on its web UI.
But, you can perfectly do this locally and the result will be the same:
git branch your_new_branch_name <commit-hash>
Now you have the branch visible in Bitbucket!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.