Gonéri's blog Light modeDark mode


Refresh all my git clones

These are the commands I use to refresh all my git clones. For example, when I know I will be offline in 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.