私のgitプロジェクトの外からサブモジュールの更新を実行したいと思います。ほとんどのコマンド(例えばgit status
)のために、私はそうのようにgitの--git-dir
と--work-tree
引数を与えることができます:fatal: $program_name cannot be used without a working tree.
別のディレクトリからgitサブモジュールを更新する
私は私がに変更できることを認識しています。しかし
git --git-dir=/path/to/root/.git --work-tree=/path/to/root status
、git --git-dir=/path/to/root/.git --work-tree=/path/to/root submodule update
を実行し、結果を提供します/path/to/root
ディレクトリですが、gitがgitプロジェクトの外部からサブモジュールを更新できるかどうかを知りたいと思います。