#!/bin/sh
#
## Nukes a branch locally and on the origin remote.
## Source: git-extra-commands

# Nukes a branch locally and on the origin remote.
#
# $1 - Branch name.
#
# Examples
#
#   git nuke add-git-nuke

set -o errexit

git branch -D "$1"
git push origin ":$1"
