mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
5 lines
95 B
Bash
Executable file
5 lines
95 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test -z $1 && echo "branch required." && exit 1
|
|
git branch -D $1
|
|
git push origin :$1 |