My repo is hosted in bitbucket, and every time I open a branch and create a PR
$ # current branch: old-branch
$ git checkout -b new-branch
$ ... changes
$ git commit -am commit
$ git push -u origin HEAD
bitbucket will create a PR into the "main" branch, even though my branch diverged from another branch. Can I force bitbucket UI to understand my destination? something like git push -u <--dest old-branch> origin HEAD
I know how to do this from the bitbucket UI. I'm asking about a CLI way to do this