Hi Bitbucket
can you improve A particular user can view the your created branches in Bitbucket?
for example:
Current User Name is "Zendo"
And "Zendo" create lots of branches and another user created Lots of branches
than "Zendo" go to Branches that time not give to any filter related of Current user
Hello @vegad Ravi ,
Welcome to Atlassian Community!
Git does not track who has created a branch, as a branch is simply a pointer to a commit, so I'm afraid it would not be possible to filter by the user who created the branch as this information isn't really stored by git.
However, a way you can determine who was working in a specific branch is by looking at the git logs :
git log --graph --abbrev-commit --decorate --first-parent <branch_name>
Hope that helps!
Thank you, @vegad Ravi !
Patrik S
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.