2017-08-30 38 views
0

我有Angular CLI,我想創建新項目ng new example但我已經創建了一個私人GitHub回購。如何添加使用Angular CLI生成的項目來回購?只是上傳?添加Angular項目以創建空的回購

+0

如果您訪問回購URL,GitHub上提供了有關如何連接現有的本地混帳回購協議的說明。它由Angular CLI生成的事實沒有任何區別。 – jonrsharpe

+0

請provie鏈接寬度這個信息,因爲我搜索,沒有找到。此後我發佈在這裏。謝謝 – Gocha

+1

字面上去'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

回答

1

應該是這樣的:

  1. 克隆回購,你已經在GitHub上。 $git clone GITHUB_URL LOCAL_DIR_NAME

  2. ng new example並確保生成的內容位於項目工作目錄中。

  3. $git status

  4. $git add .

  5. $git commit -m 'commit message here'

  6. $git push