Answers for "git pull all remotes"

3

git pull in all repositories

for i in */.git; do ( echo $i; cd $i/..; git pull; ); done
Posted by: Guest on July-13-2021
0

pull all branches from remote git

git clone http://re_here.git branch
Posted by: Guest on June-11-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language