git -C <path> run as if git was started in <path> instead of the current working directory.
ls | parallel git -C {} pull
(assuming all sub-dirs are git repositories) [1]
ls | parallel git -C {} fetch
-C <PATH>
run as if git was started in <path> instead of the current working directory
git fetch -C /path/to/git/folder