hub-create - Man Page
Create a new repository on GitHub and add a git remote for it.
Examples (TL;DR)
- Upload the current (local-only) repository to your GitHub account as public:
hub create
- Create a private repository and open the new repository in a web browser:
hub create --private --browse
Synopsis
hub create
[-poc] [-d DESCRIPTION] [-h HOMEPAGE] [[ORGANIZATION/]NAME]
Options
- -p, --private
Create a private repository.
- -d, --description DESCRIPTION
A short description of the GitHub repository.
- -h, --homepage HOMEPAGE
A URL with more information about the repository. Use this, for example, if your project has an external website.
- --remote-name REMOTE
Set the name for the new git remote (default: "origin").
- -o, --browse
Open the new repository in a web browser.
- -c, --copy
Put the URL of the new repository to clipboard instead of printing it.
- [ORGANIZATION/]NAME
The name for the repository on GitHub (default: name of the current working directory).
Optionally, create the repository within ORGANIZATION.
Examples
$ hub create [ repo created on GitHub ] > git remote add -f origin git@github.com:USER/REPO.git $ hub create sinatra/recipes [ repo created in GitHub organization ] > git remote add -f origin git@github.com:sinatra/recipes.git
See Also
Referenced By
18 Jul 2024 hub version 2.14.2 hub manual