1

我正在尝试添加一个子模块

https://bitbucket.org/hski/issuestats-public/wiki/Home

使用以下命令

git submodule add git@bitbucket.org:hski/issuestats-public.git issuestats

我收到以下错误消息

fatal: Not a git repository (or any of the parent directories): .git
4

1 回答 1

4

错误消息是指您的工作副本 - 而不是远程。

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

您需要将子模块添加git repo

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
于 2012-05-20T21:25:20.740 回答