Heim > Fragen und Antworten > Hauptteil
每次在开发机上面新建项目,然后再去git服务器上面新建一个项目,然后通过git remote add 关联起来。要不然随便添加一个远端仓库,push的时候会报错误:
fatal: Could not read from remote repository.
请问有什么方法可以让git服务器自动创建仓库的吗?
过去多啦不再A梦2017-05-02 09:35:27
这个功能牵涉到调用github的api了。
这里有篇文章可以帮到你。
Create a Github Repo from the Command Line
另外关于github api的document你可以参考这里
https://developer.github.com/v3/
Good Luck