Dotfiles/bin/git/git-nuke
2019-05-17 12:52:12 +01:00

12 lines
164 B
Bash
Executable file

#!/bin/sh
#
# Nukes a branch locally and on the origin remote.
#
# $1 - Branch name.
#
# Examples
#
# git nuke add-git-nuke
git branch -D $1
git push origin :$1