我正在尝试添加子模块
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
答案 0 :(得分: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
如果您只想获取代码以便可以使用它,则需要克隆repo:
git clone https://bitbucket.org/hski/issuestats-public.git issuestats