0
votes
0answers
34 views

Move from cloned repositories to git submodules for bundles in .vim?

I checked out the different bundles for my vim config via git clone. however I'd like them to be submodules instead. Is it possible automatically move the cloned repositories to be submodules?
2
votes
2answers
237 views

How to get Vim Ctrl-P plugin to index files inside a git submodule

If I run Ctrl-P natively out of the box, it works 100% as I desire, except that with the size of the codebase I work with, it takes a very long time to index directories. To make Ctrl-P cope with the ...
0
votes
1answer
69 views

Some git submodules won't clone

I'm using git + pathogen to track my vim plugins. I have a git repo in my .vim folder, and all my plugins are in the bundle folder. To add a new plugin I do: git submodules add ...
1
vote
1answer
50 views

Modify snippet of snipmate without changing submodule

I installed the snipmate plugin and it works really well. I had to modify a snipped but that obviously resulted in a submodule change. Is there a better way to do this? Note: I'm using pathogen to ...
1
vote
2answers
190 views

Using git submodules with my own repo

I'm newbie in git, so question may be really stupid, sorry for that. I mean, I even found here on stackoverflow questions pretty close to mine, but still don't understand how to solve problem ...
31
votes
3answers
4k views

.gitignore files added inside Git submodules

I recently reorganized my dotfiles to live inside a Git repository at ~/Dropbox/dotfiles and I'm using pathogen to bundle all Vim addons inside ~/Dropbox/dotfiles/home/.vim/bundle. These addons were ...