Estoy cambiando a usar submódulos para mis plugins vim. La forma habitual de hacer esto es:
$ git submodule add https://github.com/vim-scripts/a.vim bundle/a.vim
Cloning into 'bundle/a.vim'...
etc, etc
Esto funciona bien con todos los complementos, pero Gundo:
$ git submodule add https://github.com/sjl/gundo.vim bundle/gundo
No hay salida de ejecutar este comando. El repositorio se agrega a .gitmodules y bundle/gundo
se crea, pero está vacío excepto por un .git
expediente.
$ cd bundle/gundo
$ git status
# On branch (null)
#
# Initial commit
#
nothing to commit (create/copy files and use "git add" to track)
Soy completamente nuevo en submódulos. ¿Qué tiene de especial este repositorio y cómo lo agrego correctamente?