I am working with subgit and I don't understand well how it deals with svn externals. I found this in the help
[translate]
externals = [true|false]
a boolean value, can be set to true or false. SubGit does not support translating svn:externals to Git submodules and back. However, when this option is set to true, SubGit creates special .gitsvnextmodules files in the root of every Git commit; these files store information on all the svn:externals definitions found in a given SVN branch. When false, SubGit ignores any svn:externals properties. Default is false.
Does this mean that the externals are not processed at all but just logged into a file so that you are aware of?
Could I create a hook with subgit to the external repo and make that new git repo as a sub-module for git ?
THanks in advance,