Let’s start the discussion about How to pull all repositories in Git in following methods. You can write simple bash scripts to pull multiple Git repositories.
Contents
Git pull all repositories
To pull multiple or all git Repositories use the below bash script :
for i in */.git; do ( echo $i; cd $i/..; git pull; ); done
I hope the strategies listed above work for you. Happy coding and come back again.
Similar Post : zsh: command not found: rvm on terminal load