hub - make git easier with GitHub
hub [--noop] COMMAND [OPTIONS]
hub alias [-s] [SHELL]
hub help hub-COMMAND
Hub is a tool that wraps git in order to extend it with extra functionality that makes it better when working with GitHub.
Available commands are split into two groups: those that are already present in git but that are extended through hub, and custom ones that hub provides.
Replicate commits from a GitHub pull request locally.
Download a patch from GitHub and apply it locally.
Check out the head of a pull request as a local branch.
Cherry-pick a commit from a fork on GitHub.
Clone a repository from GitHub.
Add missing remotes prior to performing git fetch.
Initialize a git repository and add a remote pointing to GitHub.
Merge a pull request with a message like the GitHub Merge Button.
Push a git branch to each of the listed remotes.
Add a git remote for a GitHub repository.
Add a git submodule for a GitHub repository.
Show shell instructions for wrapping git.
Open a GitHub repository in a web browser.
Display GitHub Status information for a commit.
Open a GitHub compare page in a web browser.
Create a new repository on GitHub and add a git remote for it.
Delete a repository on Github.
Fork the current project on GitHub and add a git remote for it.
Create a GitHub pull request.
List and checkout GitHub pull requests.
List and create GitHub issues.
List and create GitHub releases.
Fetch from upstream and update local branches.
Hub will prompt for GitHub username & password the first time it needs to access
the API and exchange it for an OAuth token, which it saves in ~/.config/hub.
To avoid being prompted, use GITHUB_USER and GITHUB_PASSWORD environment
variables.
Alternatively, you may provide GITHUB_TOKEN, an access token with
repo permissions. This will not be written to ~/.config/hub.
If you prefer the HTTPS protocol for git operations, you can configure hub to
generate all URLs with https: instead of git: or ssh::
$ git config --global hub.protocol https
This will affect clone, fork, remote add and other hub commands that
expand shorthand references to GitHub repo URLs.
By default, hub will only work with repositories that have remotes which
point to github.com. GitHub Enterprise hosts need to be whitelisted to
configure hub to treat such remotes same as github.com:
$ git config --global --add hub.host MY.GIT.ORG
The default host for commands like init and clone is still github.com, but
this can be affected with the GITHUB_HOST environment variable:
$ GITHUB_HOST=my.git.org git clone myproject
HUB_VERBOSEEnable verbose output from hub commands.
HUB_CONFIGThe file path where hub configuration is read from and stored. If
XDG_CONFIG_HOME is present, the default is $XDG_CONFIG_HOME/hub;
otherwise it's $HOME/.config/hub. The configuration file is also
searched for in XDG_CONFIG_DIRS per XDG Base Directory Specification.
HUB_PROTOCOLUse one of "https|ssh|git" as preferred protocol for git clone/push.
GITHUB_TOKENOAuth token to use for GitHub API requests.
https://github.com/github/hub/issues
https://github.com/github/hub/contributors
git(1), git-clone(1), git-remote(1), git-init(1), https://github.com/github/hub