6 lines
109 B
Bash
Executable file
6 lines
109 B
Bash
Executable file
#!/bin/bash
|
|
# remove remote git branch
|
|
# usage: git delete-branch name
|
|
|
|
git branch -D $1
|
|
git push origin :$1
|