It may be easier to do this on the client side.
From the terminal you should be able to use:
git log --author=<your email> --format=%H %D
This will list the short hash for all commits created by you followed by any branches pointing to those commits. Unless someone else committed to your branch, this should include all of your branches.
Keep in mind, this will include local branches as well of those on the server. Branches on the Bitbucket server will begin with <remote name>/
. Unless you have designated another name for your remote, then this will typically be origin
.
Be sure to git fetch
, before you get started.
As a side note, if you want to avoid this in the future, I would suggest putting your name or initials in the branch name. For example, xyz/myBranch
. This will make it easier to locate branches created by you in the future.
git branch
and then for every branch rungit log
and filter or grep on your username , maybe also limiting to a given date back in time. – Lactary