この質問はthis threadに基づいています。`git submodule foreach git pull`できません。
マイ.gitmodulesは私のホームで私のホームでの私のフォルダ - 構造
[submodule "bin"]
path = bin
url = git://github.com/masi/bin.git
です:私は
git submodule init # I get no output from these commands
git submodule update
を実行
~
|-- [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 foreach git pull
私は、バグを修正する
Entering 'bin'
fatal: Where do you want to fetch from today?
Stopping at 'bin'; script returned non-zero status.
私の最初の仮定がpath = /Users/Masi/bin
にpath = bin
を変更した取得します。しかし、これは問題を解決しません。
Gitのサブモジュールである外部リポジトリからコンテンツをアップロードするにはどうすればよいですか?
binサブモジュールの.git/configはどのように見えますか? –
@Charles:私の.git/configはhttp://stackoverflow.com/questions/1155095/unable-to-git-submodule-foreach-git-pull/1155850#1155850 –
です。あなたのbinサブモジュールは再帰的ですね。 ? –