2017-04-07 65 views

回答

1

Github有幾種CLI工具。其中比較有名的是hub,用Go編寫。這是你如何遠程創建一個新的Github回購從你的外殼與它:

$ 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 
+0

我寫了一個工具由nodejs,非常感謝〜 – Yuga

相關問題