Is there a way to delete a branch on heroku Is there a way to delete a branch on heroku git git

Is there a way to delete a branch on heroku


You can force push

git push --force origin master

That will overwrite remote master.

You can also delete remote branch by doing this

git push origin :master

Note the colon before branch name. This command says "take void from local machine and put this instead of remote branch 'master'"