sontek/homies

broken url in .gitmodules - submodule name changed

matthewjrobinson opened this issue · 2 comments

In .gitmodules:

[submodule "_vim/bundle/snippets"] path = _vim/bundle/snippets url = https://github.com/honza/snipmate-snippets.git

causes issues as URL is no longer valid - project has been renamed, new URL is https://github.com/honza/vim-snippets.git

after changing url git still fails with fatal: reference is not a tree: a558a9787b280295cb17d264487178b1d5c5f2ec

I finally managed to resolve this by inserting git submodule sync into install.sh just before

`git submodule update --init --recursive
git submodule foreach --recursive git pull origin master'

I suspect that's not ideal, and better fixed in the repository, but I'm afraid my understanding of git isn't up to it!

I have submitted a pull request for this issue.

fixed in master