每次在開發機上面新建項目,然後再去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