This is commands I use to refresh all my git clones. For example, when I know I will be offline during the coming hours:
locate --regex '\.git$'|parallel 'cd {} && cd .. && echo $PWD && git fetch --all'
The use of GNU parallel is helpful to reduce the sync duration.