A command-line tool that makes git easier to use with GitHub.
Перейти к файлу
Derek Sifford 410e84156f
use `command grep` vs `grep`
This change accounts for uses who might have an alias set to grep with is not compatible with `grep -E` (e.g. `alias grep=rg`)
2019-12-14 17:39:11 -05:00
.ctags.d Rename `ctags` file for compatibility with universal-ctags 2018-06-06 14:00:17 +02:00
.github No fail-fast in CI 2019-12-03 04:36:26 +01:00
cmd [cmd] Stop the surprising behavior of shell-splitting in `cmd.New()` 2019-06-28 22:15:23 +02:00
commands Improve `color.ui` config support 2019-12-03 04:30:34 +01:00
coverage Measure code coverage between tests 2018-06-07 14:44:56 +02:00
etc use `command grep` vs `grep` 2019-12-14 17:39:11 -05:00
features Improve `color.ui` config support 2019-12-03 04:30:34 +01:00
fixtures Added type assertion test to YAML config decoder 2019-12-04 17:39:33 +09:00
git [remotes] Fix parsing `~/.ssh/config` on Windows 2019-09-20 22:43:59 +02:00
github Avoid ever dumping binary content in HUB_VERBOSE mode for HTTP 2019-12-05 13:30:13 +01:00
md2roff Merge remote-tracking branch 'origin/master' into man-apostrophes 2019-11-14 22:42:00 +01:00
md2roff-bin [md2roff] Make man pages parseable with `whatis` 2019-02-18 13:01:05 +01:00
script 🔥 Travis CI setup 2019-11-14 23:59:11 +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 Fix `hub help <cmd>` on Windows 2019-12-10 12:15:24 +01:00
vendor [http] Support HTTPS_PROXY, NO_PROXY from environment 2019-10-02 23:48:48 +02:00
version hub 2.13.0 2019-11-06 16:12:34 +01: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 [help] Enable `hub help --web <command>` 2019-10-31 01:58:47 +01: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 [help] Enable `hub help --web <command>` 2019-10-31 01:58:47 +01: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