tldr/pages/common/hub.md

34 lines
971 B
Markdown
Raw Normal View History

2016-02-14 14:49:56 +00:00
# hub
2021-01-07 14:06:38 +00:00
> A wrapper for Git that adds commands for working with GitHub-based projects.
> If set up as instructed by `hub alias`, one can use `git` to run `hub` commands.
2019-06-07 11:58:31 +01:00
> More information: <https://hub.github.com>.
2016-02-14 14:49:56 +00:00
2021-06-21 20:06:21 +01:00
- Clone a repository using its slug (owners can omit the username):
2016-02-14 14:49:56 +00:00
`hub clone {{username}}/{{repo_name}}`
2016-02-14 14:49:56 +00:00
2021-01-07 14:19:35 +00:00
- Create a fork of the current repository (cloned from another user) under your GitHub profile:
`hub fork`
2021-01-07 14:19:35 +00:00
- Push the current local branch to GitHub and create a PR for it in the original repository:
`hub push {{remote_name}} && hub pull-request`
- Create a PR of the current (already pushed) branch, reusing the message from the first commit:
`hub pull-request --no-edit`
- Create a new branch with the contents of a pull request and switch to it:
`hub pr checkout {{pr_number}}`
2021-01-07 14:19:35 +00:00
- Upload the current (local-only) repository to your GitHub account:
2016-02-14 14:49:56 +00:00
`hub create`
2021-06-21 20:06:21 +01:00
- Fetch Git objects from upstream and update local branches:
`hub sync`