mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
Merge branch 'master' of git://github.com/visionmedia/git-extras
This commit is contained in:
commit
ea66a802ba
|
|
@ -5,11 +5,15 @@
|
|||
|
||||
## Installation
|
||||
|
||||
Make:
|
||||
Clone / Tarball:
|
||||
|
||||
$ make install
|
||||
|
||||
Brew:
|
||||
One-liner:
|
||||
|
||||
$ curl http://github.com/visionmedia/git-extras/raw/master/bin/git-update-extras | sh
|
||||
|
||||
Brew (buggy):
|
||||
|
||||
$ brew install git-extras
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh
|
||||
|
||||
test -z $1 && echo "branch required." && exit 1
|
||||
git branch -d $1
|
||||
git branch -D $1
|
||||
git branch -d -r origin/$1 && git push origin :$1
|
||||
|
|
|
|||
Loading…
Reference in a new issue