mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-10 11:29:59 +03:00
8d671b6240
- Add `push` command to the pull-request example - add a new example demonstrating the `--no-edit` option
855 B
855 B
hub
A wrapper for git that adds commands for working with GitHub-based projects. The commands can also be used using "git" instead of "hub".
- Clone a repository you own, using just the repository name rather than the full URL:
hub clone {{repo_name}}
- Clone another user's repository, using their github username and the repository name:
hub clone {{username}}/{{repo_name}}
- Create a fork of the current repository (cloned from another user) under your github profile:
hub fork
- 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
- Upload the current (local-only) repository to your github account:
hub create