Skip to content

Commit

Permalink
Merge branch 'integration'
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Aug 27, 2010
2 parents 468ceaa + e2aeb48 commit c187a50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions bin/git-delete-branch
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/bin/sh

test -z $1 && echo "branch required." && exit 1
git branch -D $1
git push origin :$1
git branch -d $@ && git push origin :$1
3 changes: 1 addition & 2 deletions bin/git-delete-tag
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/bin/sh

test -z $1 && echo "tag required." && exit 1
git tag -d $1
git push origin :refs/tags/$1
git tag -d $1 && git push origin :refs/tags/$1

0 comments on commit c187a50

Please sign in to comment.