A command-line tool that makes git easier to use with GitHub.
Перейти к файлу
Mislav Marohnić e1f2e41e2b [api] Use "exceeded" to match GitHub API terminology 2019-10-30 22:26:50 +01:00
.ctags.d Rename `ctags` file for compatibility with universal-ctags 2018-06-06 14:00:17 +02:00
cmd [cmd] Stop the surprising behavior of shell-splitting in `cmd.New()` 2019-06-28 22:15:23 +02:00
commands [api] Use "exceeded" to match GitHub API terminology 2019-10-30 22:26:50 +01:00
coverage Measure code coverage between tests 2018-06-07 14:44:56 +02:00
etc Make --no-remote and --remote-name completions mutually exclusive 2019-10-03 21:42:00 +02:00
features [api] Use "exceeded" to match GitHub API terminology 2019-10-30 22:26:50 +01:00
fixtures Preserve order of hosts in hub config file 2019-01-02 18:27:50 +01:00
git [remotes] Fix parsing `~/.ssh/config` on Windows 2019-09-20 22:43:59 +02:00
github [api] Clean up `--rate-limit` implementation 2019-10-30 22:26:50 +01:00
md2roff Simplify code 2019-07-23 09:28:32 +02:00
md2roff-bin [md2roff] Make man pages parseable with `whatis` 2019-02-18 13:01:05 +01:00
script Merge branch 'docker' 2019-10-29 11:50:07 +01:00
share [gist] List in help docs 2019-10-21 22:21:50 +02:00
ui Simplify code 2019-07-23 09:28:32 +02:00
utils Avoid unnecessary conversions 2019-07-23 09:36:19 +02:00
vendor [http] Support HTTPS_PROXY, NO_PROXY from environment 2019-10-02 23:48:48 +02:00
version hub 2.12.8 2019-10-03 02:46:27 +02:00
.dockerignore [test] Add ability to run tests in a Docker container 2019-10-29 11:06:16 +01:00
.gitattributes Enforce unix eol in bash script files 2017-09-02 20:55:54 +01:00
.gitignore Ignore VSCode 2019-06-04 14:05:24 -04:00
.travis.yml [ci] Test with Go 1.13 2019-10-03 00:49:56 +02:00
CODE_OF_CONDUCT.md Improve contact email, part 2 2017-08-28 21:47:08 +02:00
CONTRIBUTING.md [docs] Improve CONTRIBUTING documentation 2019-10-29 11:47:43 +01:00
Dockerfile [test] Add ability to run tests in a Docker container 2019-10-29 11:06:16 +01:00
Gemfile Update Aruba to 1.0.0 prerelease 2019-08-21 17:53:25 +02:00
Gemfile.lock Update Aruba to 1.0.0 prerelease 2019-08-21 17:53:25 +02:00
LICENSE MIT 2009-12-08 02:13:06 -08:00
Makefile Merge branch 'gist' 2019-10-21 22:25:25 +02:00
README.md Make hub lowercase 2019-10-16 20:06:50 -05:00
cucumber.yml Update Cucumber 2019-08-21 17:33:11 +02:00
go.mod Merge pull request #2286 from github/proxy-from-env 2019-10-10 15:40:12 +02:00
go.sum [http] Support HTTPS_PROXY, NO_PROXY from environment 2019-10-02 23:48:48 +02:00
main.go Remove unused `ogier/pflag` 2019-01-18 04:16:46 +01:00
man-template.html [md2roff] Style the "SYNOPSIS" section of HTML man pages 2019-02-18 13:13:13 +01:00

README.md

hub is a command line tool that wraps git in order to extend it with extra features and commands that make working with GitHub easier.

This repository and its issue tracker is not for reporting problems with GitHub.com web interface. If you have a problem with GitHub itself, please contact Support.

Usage

$ hub clone rtomayko/tilt

# expands to:
#=> git clone git://github.com/rtomayko/tilt.git

hub can be safely aliased as git so you can type $ git <command> in the shell and get all the usual hub features.

See Usage documentation for the list of all commands and their arguments.

hub can also be used to make shell scripts that manually interface with the GitHub API.

Installation

The hub executable has no dependencies, but since it was designed to wrap git, it's recommended to have at least git 1.7.3 or newer.

platform manager command to run
macOS, Linux Homebrew brew install hub
Windows Scoop scoop install hub
Windows Chocolatey choco install hub
Fedora Linux DNF sudo dnf install hub
Arch Linux pacman sudo pacman -S hub
FreeBSD pkg(8) pkg install hub
Debian apt(8) sudo apt install hub
Ubuntu Snap snap install hub --classic

Standalone

hub can be easily installed as an executable. Download the latest compiled binaries and put it anywhere in your executable path.

Source

Prerequisites for building from source are:

Clone this repository and run make install:

git clone \
  --config transfer.fsckobjects=false \
  --config receive.fsckobjects=false \
  --config fetch.fsckobjects=false \
  https://github.com/github/hub.git

cd hub
make install prefix=/usr/local

This assumes support for Go 1.11+ modules. If you are building on an older version of Go, you will need to clone the repository into $GOPATH/src/github.com/github/hub.

Aliasing

Some hub features feel best when it's aliased as git. This is not dangerous; your normal git commands will all work. hub merely adds some sugar.

hub alias displays instructions for the current shell. With the -s flag, it outputs a script suitable for eval.

You should place this command in your .bash_profile or other startup script:

eval "$(hub alias -s)"

PowerShell

If you're using PowerShell, you can set an alias for hub by placing the following in your PowerShell profile (usually ~/Documents/WindowsPowerShell/Microsoft.PowerShell_profile.ps1):

Set-Alias git hub

A simple way to do this is to run the following from the PowerShell prompt:

Add-Content $PROFILE "`nSet-Alias git hub"

Note: You'll need to restart your PowerShell console in order for the changes to be picked up.

If your PowerShell profile doesn't exist, you can create it by running the following:

New-Item -Type file -Force $PROFILE

Shell tab-completion

hub repository contains tab-completion scripts for bash, zsh and fish. These scripts complement existing completion scripts that ship with git.

Installation instructions

Meta