Bash'den basittir:
for d in *; do GIT_DIR="$d/.git" git pull; done
Veya:
for d in *; do GIT_DIR="$PWD/$d/.git" git pull; done
Ancak, Windows Komut İstemi'nden bu kadar basit değil. Denedim:
for /D %i in (*.*) do cd "%i" && git pull
for /D %i in (*.*) do cd "<absolute_path>\%i" && git pull
for /D %i in (*.*) do set GIT_DIR="<absolute_path>\%i\.git git pull"
for /D %i in (*.*) do set GIT_DIR="<absolute_path>\%i\.git && git pull"
Ama hiçbiri çalışmıyor. Daima bu hatalardan birini elde etmek:
fatal: unable to access '"repo-name/.git" /config': Invalid argument
The system cannot find the path specified.
c:\sdf>for /D %i in (*.*) do (CD c:\sdf\%i && DIR && pause)
Sorun gidermek için duraklamayı kullanın. Başka bir varyasyon olduğunuc:\sdf>for /D %i in (*.*) do (CD %i && DIR && CD .. && PAUSE)
vec:\sdf>for /D %i in (*.*) do (PUSHD %i && DIR && POPD && PAUSE)