0
我有Angular CLI,我想創建新項目ng new example
但我已經創建了一個私人GitHub回購。如何添加使用Angular CLI生成的項目來回購?只是上傳?添加Angular項目以創建空的回購
我有Angular CLI,我想創建新項目ng new example
但我已經創建了一個私人GitHub回購。如何添加使用Angular CLI生成的項目來回購?只是上傳?添加Angular項目以創建空的回購
應該是這樣的:
克隆回購,你已經在GitHub上。 $git clone GITHUB_URL LOCAL_DIR_NAME
ng new example
並確保生成的內容位於項目工作目錄中。
$git status
$git add .
$git commit -m 'commit message here'
$git push
如果您訪問回購URL,GitHub上提供了有關如何連接現有的本地混帳回購協議的說明。它由Angular CLI生成的事實沒有任何區別。 – jonrsharpe
請provie鏈接寬度這個信息,因爲我搜索,沒有找到。此後我發佈在這裏。謝謝 – Gocha
字面上去'https://github.com//' - 雖然它是空的,它顯示說明。另見https://help.github.com/articles/creating-a-new-repository/和https://help.github.com/articles/importing-a-git-repository-using-the-command-line / –
jonrsharpe