hub Documentation: man hub hub is a command-line wrapper for git that makes you better at GitHub . # install on OS X $ brew install hub # install from source $ git clone https://github.com/github/hub.git $ cd hub $ rake install prefix=/usr/local # alias it as git $ alias git=hub $ git version git version 1.7.9 hub version 1.11.0 # ← it works! Whether you are beginner or an experienced contributor to open-source, hub makes it easier to fetch repositories , navigate project pages , fork repos and even submit pull requests , all from the command-line. # clone your own project $ git clone dotfiles → git clone git://github.com/YOUR_USER/dotfiles.git # clone another project $ git clone github/hub → git clone git://github.com/github/hub.git # see the current project's issues $ git browse -- issues → open https://github.com/github/hub/issues # open another project's wiki $ g...