2012-05-20 69 views

回答

4

錯誤消息指到你的工作副本 - 而不是遙控器。

cd /no/git/here 
git submodule add foo bar 
fatal: Not a git repository (or any of the parent directories): .git 

您需要添加子模塊一個git回購

cd /my/repos/project-x 
git submodule add foo bar 
# will work or give a more specific error 

如果你只是想獲得的代碼,所以你可以使用它,你需要克隆回購:

git clone https://bitbucket.org/hski/issuestats-public.git issuestats 
相關問題