Skip to content

Commit

Permalink
Some small fixes and additions to help and documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Brown authored and defunkt committed Apr 29, 2010
1 parent 8742d69 commit 853f40f
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 14 deletions.
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ You can also install from source:
Aliasing
--------

hub works best when it wraps `git`. This is not dangerous - your
`hub` works best when it wraps `git`. This is not dangerous - your
normal git commands should all work. hub merely adds some sugar.

Typing `hub alias <shell>` will display alias instructions for
Expand Down Expand Up @@ -157,7 +157,7 @@ login" below for details.
> open http://github.com/schacon/ticgit

$ git browse -p schacon/ticgit
> open http://github.com/schacon/ticgit
> open https://github.com/schacon/ticgit

$ git browse resque
> open http://github.com/YOUR_USER/resque
Expand All @@ -176,17 +176,18 @@ login" below for details.
$ git compare -u fix
> (http://github.com/CURRENT_REPO/compare/fix)

$ git compare myfork patch
> open http://github.com/myfork/compare/patch
$ git compare other-user patch
> open http://github.com/other-user/REPO/compare/patch

### git submodule

$ hub submodule add wycats/bundler vendor/bundler
> git submodule add git://github.com/wycats/bundler.git vendor/bundler

$ hub submodule add -p wycats/bundler vendor/bundler
> git submodule add git@github.com:wycats/bundler.git vendor/bundler

$ hub submodule add -b ryppl ryppl/pip vendor/bundler
$ hub submodule add -b ryppl ryppl/pip vendor/pip
> git submodule add -b ryppl git://github.com/ryppl/pip.git vendor/pip


Expand Down Expand Up @@ -259,6 +260,16 @@ Once you've made your great commits:
4. Create an [Issue][1] with a link to your branch
5. That's it!

### Development Gems
You will need the following gems (and their dependencies) to
contribute to `hub`:

* `rake` (`gem install rake`)
* `kicker` (`gem install kicker`)
* `turn` (`gem install turn`)
* `mg` (`gem install mg`)
* `ronn` (`gem install ronn`)
* `webhelper` (`gem install webhelper`)

Meta
----
Expand Down
6 changes: 3 additions & 3 deletions man/hub.1
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ $ git browse schacon/ticgit
> open http://github.com/schacon/ticgit

$ git browse \-p schacon/ticgit
> open http://github.com/schacon/ticgit
> open https://github.com/schacon/ticgit

$ git browse resque
> open http://github.com/YOUR_USER/resque
Expand All @@ -240,8 +240,8 @@ $ git compare 1.0...1.1
$ git compare \-u fix
> (http://github.com/CURRENT_REPO/compare/fix)

$ git compare myfork patch
> open http://github.com/myfork/compare/patch
$ git compare other\-user patch
> open http://github.com/other\-user/REPO/compare/patch
.
.fi
.
Expand Down
6 changes: 3 additions & 3 deletions man/hub.1.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions man/hub.1.ronn
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ cloning:
> open http://github.com/schacon/ticgit

$ git browse -p schacon/ticgit
> open http://github.com/schacon/ticgit
> open https://github.com/schacon/ticgit

$ git browse resque
> open http://github.com/YOUR_USER/resque
Expand All @@ -168,8 +168,8 @@ cloning:
$ git compare -u fix
> (http://github.com/CURRENT_REPO/compare/fix)

$ git compare myfork patch
> open http://github.com/myfork/compare/patch
$ git compare other-user patch
> open http://github.com/other-user/REPO/compare/patch

### git help

Expand Down

0 comments on commit 853f40f

Please sign in to comment.