Skip to content

Commit

Permalink
Merge branch 'master' of github.com:visionmedia/git-extras
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Jan 28, 2013
2 parents 2527e38 + 8eeed27 commit 274b3dc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
16 changes: 8 additions & 8 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ $ brew install git-extras
- `git promote`
- `git local-commits`

## extras
## git-extras

The main `git-extras` command.

Expand All @@ -89,7 +89,7 @@ $ git extras update
```


## gh-pages
## git-gh-pages

Sets up the `gh-pages` branch. (See [GitHub Pages](http://pages.github.com/) documentation.)

Expand Down Expand Up @@ -182,6 +182,12 @@ node (master): git effort --above 15 {src,lib}/*

```
$ git effort --above 5
```

By default `git ls-files` is used, however you may pass one or more files to `git-effort(1)`, for example:

```
$ git effort bin/* lib/*
```

## git-repl
Expand All @@ -203,12 +209,6 @@ bin/git-ignore
bin/git-release

git> quit
```

By default `git ls-files` is used, however you may pass one or more files to `git-effort(1)`, for example:

```
$ git effort bin/* lib/*
```

## git-commits-since [date]
Expand Down
2 changes: 1 addition & 1 deletion bin/git-delete-branch
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ branch=$1
test -z $branch && echo "branch required." 1>&2 && exit 1
git branch -D $branch
git branch -d -r origin/$branch
git push origin :$branch
git push origin :refs/heads/$branch
3 changes: 2 additions & 1 deletion bin/git-delete-tag
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

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

0 comments on commit 274b3dc

Please sign in to comment.