在子目录上执行git pull(递归)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在子目录上执行git pull(递归)相关的知识,希望对你有一定的参考价值。
A fast and easy way to go through all vim-pathogen bundles and perform a git pull on all of them.
# find all .git directories and exec "git pull" on the parent. find . -type d -name .git -exec sh -c "cd "{}"/../ && pwd && git pull" ;
以上是关于在子目录上执行git pull(递归)的主要内容,如果未能解决你的问题,请参考以下文章
如何在服务器上设置 git 存储库,并允许多个用户执行 git pull,而不是由一个用户拥有?