这个问题是基于这个线程 。
我.gitmodules是我的家
[submodule "bin"]
path = bin
url = git://github.com/masi/bin.git
我的文件夹结构-在我的主页:
~
|-- [drwxr-xr-x] bin // this is the folder which I make a submodule
// it is also a folder where I have a Git to push my submodule's files
| -- fileA
` -- folderA
...
我跑
git submodule init # I get no output from these commands
git submodule update
我跑
git submodule foreach git pull
我得到
Entering 'bin'
fatal: Where do you want to fetch from today?
Stopping at 'bin'; script returned non-zero status.
我的第一个假设来修正错误是改变path = bin
到path = /Users/Masi/bin
。 然而,这并不能解决问题。
你怎么可以上传这是我的Git的子模块的外部存储库中的内容?