A command-line tool that makes git easier to use with GitHub.
Перейти к файлу
kfcampbell 9c9a489b31 Initial commit 2020-03-20 15:11:47 -07:00
.ctags.d Rename `ctags` file for compatibility with universal-ctags 2018-06-06 14:00:17 +02:00
.github Remove support for Go < 1.11 2020-03-05 14:42:30 +01:00
cmd Initial commit 2020-03-20 15:11:47 -07:00
commands Initial commit 2020-03-20 15:11:47 -07:00
coverage Measure code coverage between tests 2018-06-07 14:44:56 +02:00
etc Add more Fish completions to pull-request 2020-03-16 15:38:16 +01:00
features Merge pull request #2432 from jfahrer/master 2020-01-21 12:55:00 +01:00
fixtures Added type assertion test to YAML config decoder 2019-12-04 17:39:33 +09:00
git Use `git symbolic-ref` to read the branch name for HEAD 2020-03-01 10:52:11 +01:00
github Normalize `url.Error` message for Go 1.14 2020-03-05 15:03:11 +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 Merge branch 'patch-1' 2020-03-09 02:20:55 +01:00
share [docs] Clarify HUB_VERBOSE 2019-12-31 00:03:19 +01:00
ui Simplify code 2019-07-23 09:28:32 +02:00
utils Inline check for updating flags 2020-01-20 14:10:18 -08:00
vendor [http] Support HTTPS_PROXY, NO_PROXY from environment 2019-10-02 23:48:48 +02:00
version hub 2.14.2 2020-03-05 18:48:23 +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 Remove support for Go < 1.11 2020-03-05 14:42:30 +01:00
README.md Add openSUSE and zypper to install instructions 2020-03-12 15:51:01 +01: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 Remove unwanted tracking from distributed HTML man pages 2020-01-21 14:13:17 +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
#=> git clone git://github.com/rtomayko/tilt.git

# if you prefer HTTPS to git/SSH protocols:
$ git config --global hub.protocol https
$ hub clone rtomayko/tilt
#=> git clone https://github.com/rtomayko/tilt.git

See usage examples or the full reference documentation to see all available commands and flags.

hub can also be used to make shell scripts that directly interact with the GitHub API.

hub can be safely aliased as git, so you can type $ git <command> in the shell and have it expanded with hub features.

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 sudo snap install hub --classic
openSUSE Zypper sudo zypper install hub

Packages other than Homebrew are community-maintained (thank you!) and they are not guaranteed to match the latest hub release. Check hub version after installing a community package.

Standalone

hub can be easily installed as an executable. Download the latest binary for your system and put it anywhere in your executable path.

GitHub Actions

hub can be used for automation through GitHub Actions workflows:

steps:
- uses: actions/checkout@v2

- name: hub example
  shell: bash
  run: |
    curl -fsSL https://github.com/github/hub/raw/master/script/get | bash -s 2.14.1
    bin/hub pr list  # list pull requests in the current repo    
  env:
    GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Note that the default GITHUB_TOKEN will only work for API operations within the same repo that runs this workflow. If you need to access or write to other repositories, generate a Personal Access Token with repo scope and add it to your repository secrets.

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

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.

Meta