📌  相关文章
📜  创建私有存储库 github 命令行 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:31.684000             🧑  作者: Mango

代码示例1
# create a repository under your account using the current directory name
$ git init my-project
$ cd my-project
$ gh repo create

# create a repository with a specific name
$ gh repo create my-project

# create a repository in an organization
$ gh repo create cli/my-project

# disable issues and wiki
$ gh repo create --enable-issues=false --enable-wiki=false