这个问题是基于这个线程。
我的 .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 中的子模块外部存储库上传内容?