Generating tags to different location by pathogen

后端 未结 3 1596
孤城傲影
孤城傲影 2020-12-24 08:47

I use pathogen for organizing my vim plugins. I git clone the plugins from github into the vimbundles directory. This way it is simple to update them.

I

3条回答
  •  悲哀的现实
    2020-12-24 08:55

    Randy's answer works best for me. A one liner I use when I want to add the ignore = untracked option to a lot of submodules is:

    for s in `git submodule  --quiet foreach 'echo $name'` ; do git config submodule.$s.ignore untracked ; done
    

提交回复
热议问题