私はgitサブモジュールのいくつかの機能が好きです。しかし、IntelliJ does not use them well。私は、私が使っている子レポのリストを指し示す親のgit repoが必要です。私は、すべての子リポジトリがファイルシステム内の兄弟フォルダにある場合、IntelliJが協力すると思います。兄弟フォルダのGitサブモジュール
私はこれを試してみました:
のgit:その後、私はこれをしなかった
The following path is ignored by one of your .gitignore files:
../child1 Use -f if you really want to add it.
:
gitのサブモジュールは、[email protected]/child1.gitが
を../child1追加はこれを手に入れましたサブモジュールadd -f [email protected]/child1.git ../child1
およびgot:
Cloning into '../child1'...
remote: Counting objects: 3, done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (3/3), done.
Checking connectivity... done.
fatal: Not a git repository: ../child1/../../.git/modules/../child1
サブモジュールを兄弟フォルダとして追加する方法はありますか?
を確認します。それらをサブモジュールを作成し、管理するためのバッチファイルやカスタムプログラムを使用していませんクローン。 – crashmstr
私はgitがこれをサポートしていないと信じています。通常のサブモジュールを作成し、必要な場所にシンボリックリンクを作成するのはどうでしょうか? –
シンボリックリンクやバッチはオプションではないと思います。このレポの一部のユーザーは、Windowsの一部のウィンドウを使用します。たぶんgradle ..しかし、それはハックのように思える。 – User1