git - Can I create new repository on github.com by shell command? -
now if want create new repository on github.com, have create on website github.com. can create new 1 on local machine shell command?
there several cli tools github. 1 of more famous hub
, written in go. how remotely create new github repo shell it:
$ git init $ git add . && git commit -m "it begins." $ git create -d "description goes here" # (creates new project on github name of current directory) $ git push origin master
Comments
Post a Comment