We have a branch in a git repo on our Bitbucket that we are unable to delete ("Delete branch" option under the gear icon is greyed out). Not sure if this is specific to what we did to create it but I'd like to figure out how we can delete it.
The branch originally got created by using the Bitbucket online editor, then committing and checking the "create pull request from commit" option. We then tested by declining the pull request.
Shouldn't we be able to still delete this branch? If so, how? (git commands for doing this would be acceptable, I'm still fairly new to git and none of the branch deletion commands I've tried have worked but it's possible I'm doing them wrong).
Thanks!
Hi Jesse,
Thanks, I found that I needed to use a slightly different command:
git push origin :<branchName>
Not sure if that's due to a difference in versions of git, but it did work.
Thanks for your help!
-steve
This command does not delete a branch and ti is the wrong command syntax. I have no idea why it was accepted. The command below from @Tabrej Shekh is correct.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can we delete a branch from the bitbucket web application without running the command.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Steve,
You will want to use the following to delete a remote branch:
git push --origin delete <branchName>
Make sure you have the correct branch permissions set under the 'Branch management' admin menu (click on the 'gear' icon) but if this does not work, tell us, and we can look in your remote git config to make sure you don't have any flags that are preventing you from deleting a branch.
Cheers,
Jesse
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
git push origin --delete <branchName>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is the correct command. At least, it is what I use and it works git version 2.21.1 (Apple Git-122.3). I unfortunately have had to use it several times in the last few days.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.