サブモジュールの仕組みがよくわかりません。
リモートリポジトリPARENTとリモートリポジトリCHILDがあります。リポジトリCHILDをリポジトリPARENTのサブモジュールにしたいので、PARENTをチェックアウトすると、CHILDも ( PARENTのサブフォルダーに) チェックアウトされます。そこで、私の最初の試みは、 PARENTを裸のリポジトリとして設定することでした。しかし、サブモジュールを追加したいとき:
[git ~/repositories/PARENT] git submodule add git://github.com/CHILD.git CHILD
fatal: /usr/libexec/git-core/git-submodule cannot be used without a working tree.
そのため、 PARENTを適切な作業ツリーを持つベアでないリポジトリにしました (そのリポジトリに作業ツリーは本当に必要ありませんが)。サブモジュールの追加はうまくいきました。PARENTをローカル リポジトリに複製することもうまくいき、CHILDは意図したとおりにサブフォルダーとしてチェックアウトされました。次に、変更をローカル リポジトリから再度PARENTにプッシュしたい場合:
branch is currently checked out
error: refusing to update checked out branch: refs/heads/master
error: By default, updating the current branch in a non-bare repository
error: is denied, because it will make the index and work tree inconsistent
error: with what you pushed, and will require 'git reset --hard' to match
error: the work tree to HEAD.
error:
error: You can set 'receive.denyCurrentBranch' configuration variable to
error: 'ignore' or 'warn' in the remote repository to allow pushing into
error: its current branch; however, this is not recommended unless you
error: arranged to update its work tree to match what you pushed in some
error: other way.
error:
error: To squelch this message and still keep the default behaviour, set
error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.
作業ツリーがあるため、裸のリポジトリではサブモジュールを使用できませんが、裸でないリポジトリを使用すると、作業ツリーがあるためチェックインできませんか? ここで何が理解できませんか?