现在如果我想在github.com上创建一个新的存储库,我必须在网站github.com上创建它。那么我可以通过shell命令在我的本地机器上创建一个新的吗?
答案 0 :(得分:1)
Github有几种CLI工具。其中一个比较着名的是hub
,用Go编写。这就是你用它从shell远程创建一个新的Github repo的方法:
$ git init
$ git add . && git commit -m "It begins."
$ git create -d "Description goes here"
# (creates a new project on GitHub with the name of current directory)
$ git push origin master