1. hub-create(1)
  2. hub 手册
  3. hub-create(1)

在 GitHub 上创建新仓库并添加一个 git 远程版本。

概要

hub create [-poc] [-d 描述] [-h 主页] [[组织/]名称]

选项

-p, --private

创建一个私有仓库。

-d, --description 描述

对 GitHub 仓库进行简短描述。

-h, --homepage 主页

一个有关该仓库的更多信息的 URL。例如,如果您的项目有外部网站,就使用这个。

--remote-name 远程

为新 git 远程版本设置名称(默认:”原始”)。

-o, --browse

在网络浏览器中打开新仓库。

-c, --copy

将新仓库的 URL 复制到剪贴板,而不打印它。

[组织/]名称

GitHub 上的仓库名称(默认:当前工作目录的名称)。

也可以在 组织 中创建仓库。

实例

$ hub create
[ repo created on GitHub ]
> git remote add -f origin [email protected]:USER/REPO.git

$ hub create sinatra/recipes
[ repo created in GitHub organization ]
> git remote add -f origin [email protected]:sinatra/recipes.git

另请参阅

hub-init(1), hub(1)