sh 将所有现有的vim包添加到gitmodules

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 将所有现有的vim包添加到gitmodules相关的知识,希望对你有一定的参考价值。

plugins=$(find . -type d -d 1  | tail -n +3)
for plugin in $plugins; do
    echo plugin: $plugin
    cd $plugin
    repo=$(git remote -v | head -n 1 | cut -f 2 | cut -f 1 -d ' ')
    echo repo: $repo
    cd ..
    git submodule add $repo
done

以上是关于sh 将所有现有的vim包添加到gitmodules的主要内容,如果未能解决你的问题,请参考以下文章

如何将 SRW 包添加到现有的 Oracle 数据库?

将捆绑包添加到现有的 ASP.NET Webforms 解决方案

sh Bitbucket Cloud - 将现有的无版本代码添加到空存储库

如何将 Sapper 添加到现有的 Svelte 项目中?

使用 rstan::rstan.package.skeleton 添加到现有的 R 包

如何将 JPA 添加到现有的 Eclipse 项目?