Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

git pull in all repositories

for i in */.git; do ( echo $i; cd $i/..; git pull; ); done
 
PREVIOUS NEXT
Tagged: #git #pull #repositories
ADD COMMENT
Topic
Name
6+2 =