I'm trying to use an svn repository via git-svn, and I've added the svn externals as git submodules.
It looks like this has staged the submodule directories though, and I don't want to commit them back to svn.
I've tried adding them to .gitignore and using:
$ git reset HEAD
to unstage them, but now they no longer show up when I enter:
$ git submodule
Is this correct? Can I add svn externals as git submodules without committing them back to svn?
Thanks!