push branch deletion to remote code example
Example 1: Delete a Git Branch In Local And Remotely
git push <remote_name> --delete <branch_name>
Example 2: git delete remote branch
$ git push origin --delete feature/login
git push <remote_name> --delete <branch_name>
$ git push origin --delete feature/login