Home > Net >  Is it possible to use any command to create a new repo on github in command line?
Is it possible to use any command to create a new repo on github in command line?

Time:05-23

I tried to searched the google but didn't get any clue about this. If i can use git command to create a new repo on github, so i dont have to open github website and click to create a repo,it will be easier to use.

CodePudding user response:

Download Github CLI

And use these commands

gh repo create [set_name_for_repo]
  • Related