這個問題是基於this thread。無法'git submodule foreach git pull'
我.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中的子模塊)上載內容?
什麼是git的/配置看起來像你的bin子模塊? – 2009-07-20 18:37:42
@Charles:我的.git /配置是在http://stackoverflow.com/questions/1155095/unable-to-git-submodule-foreach-git-pull/1155850#1155850 – 2009-07-20 20:41:39
它看起來像你的bin子模塊是遞歸的? ? – 2009-07-20 21:37:12