Answers for "create private repository github command line"

1

create private repository github command line

# 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
Posted by: Guest on May-21-2021

Code answers related to "create private repository github command line"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language