2012-11-08 81 views
0

我想將github項目複製到我自己的項目中。我確實在我的終端以下將github項目複製到自己的項目中

cd *your-project-location* 
git submodule add [email protected]:escoz/QuickDialog.git 

我把我的項目文件夾中的所有讀取和寫入權限,但在終端它給了以下錯誤。

MacBook-Pro-van-Stef-2:FormsExample geelenstef$ git submodule add [email protected]:escoz/QuickDialog.git 
Cloning into 'QuickDialog'... 
Permission denied (publickey). 
fatal: Could not read from remote repository. 

Please make sure you have the correct access rights 
and the repository exists. 
Clone of '[email protected]:escoz/QuickDialog.git' into submodule path 'QuickDialog' failed 

有人有想法嗎?

親切的問候

回答

2

您使用的是GitHub上的讀/寫訪問,所以你需要一個SSH密鑰設置爲允許這一點。如果您只想只讀訪問,請改爲使用https:// URL方案。

如果你想改變這個項目,那麼你需要到餐桌它在GitHub上,並使用讀/寫訪問([email protected])來訪問它,這就像我說的,需要一個SSH密鑰,超出計算器的範圍。

+0

謝謝您的回答。我在github上分出它。但是,我需要做什麼知道將其安裝在我的項目中? – Steaphann

+0

@StefGeelen當我這樣做時,我創建了單獨的Xcode項目,並使用Xcode Workspace將它們組合在一起。 – trojanfoe

+0

Oké其他問題。如果我只有一個人使用該項目,而不是編輯它? – Steaphann