A command-line tool that makes git easier to use with GitHub.
Перейти к файлу
Mislav Marohnić 603a731aa4 [gist] Use first configured API hosts instead of prompting
If hub is configured with multiple hosts (usually including GitHub
Enterprise instances), every invocation to `hub gist` would prompt to
select a host. Assume that people want to use the first configured host
by default (they can change it via GITHUB_HOST).
2019-10-18 12:16:28 +02:00
.ctags.d
cmd [cmd] Stop the surprising behavior of shell-splitting in `cmd.New()` 2019-06-28 22:15:23 +02:00
commands [gist] Use first configured API hosts instead of prompting 2019-10-18 12:16:28 +02:00
coverage
etc Added `hub pr` fish completions and wrapped `git` completions 2019-09-07 19:41:06 -04:00
features [gist] Add tests for error scenarios 2019-10-18 12:10:19 +02:00
fixtures
git Fixed ineffectual assignments in tests 2019-07-23 09:31:17 +02:00
github code review bits 2019-10-17 23:59:27 -07:00
md2roff Simplify code 2019-07-23 09:28:32 +02:00
md2roff-bin
script build: pass mod vendoring flag on newer versions of go 2019-06-15 22:56:33 -04: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
version hub 2.12.4 2019-09-06 14:00:06 -07:00
.gitattributes
.gitignore
.travis.yml
CODE_OF_CONDUCT.md
CONTRIBUTING.md
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
Makefile tweak Makefile settings for module support 2019-08-19 14:16:08 -04:00
README.md [docs] Condense package managers section 2019-08-23 16:54:59 +02:00
Vagrantfile
cucumber.yml Update Cucumber 2019-08-21 17:33:11 +02:00
go.mod
go.sum
main.go
man-template.html

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