A command-line tool that makes git easier to use with GitHub.
Перейти к файлу
Siôn le Roux 1d209b896f Don't suggest completions for git fork free-text arguments
The --remote-name and --org parameters to git fork expect arguments
which can be considered free text because the user has to suggest a
name, so we can't provide suggestions there.

If one of those two was the previous word then we clear completion
suggestions until a free-text word has been entered, allowing the user
to add their own input there.
2019-10-03 21:29:23 +02: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 [compare] Allow slash in branch names 2019-10-01 17:07:26 +02:00
coverage Measure code coverage between tests 2018-06-07 14:44:56 +02:00
etc Don't suggest completions for git fork free-text arguments 2019-10-03 21:29:23 +02:00
features [api] Fix GraphQL requests made to Enterprise hosts 2019-10-03 01:53:37 +02: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] Fix GraphQL requests made to Enterprise hosts 2019-10-03 01:53:37 +02: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 [ci] Create a non-draft release from annotated tag 2019-10-03 02:44:38 +02:00
share [docs] Expand list of supported environment variables 2019-09-06 13:54:02 -07: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 Update x/sys module to support Risc-V 2019-05-31 21:14:48 +00:00
version hub 2.12.8 2019-10-03 02:46:27 +02: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 migrate to go modules from dep 2019-05-14 22:31:19 -07: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 [make] Use GOFLAGS instead of manually passing `-mod=vendor` 2019-10-03 00:51:07 +02:00
README.md [docs] Condense package managers section 2019-08-23 16:54:59 +02:00
Vagrantfile Use Go 1.4.2 2015-04-12 13:57:05 -07:00
cucumber.yml Update Cucumber 2019-08-21 17:33:11 +02:00
go.mod [mod] Indicate that the module is compatible with Go 1.11 2019-10-03 00:50:34 +02:00
go.sum Update x/sys module to support Risc-V 2019-05-31 21:14:48 +00: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 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