Traverse Folder batch execution git pull

echo off & color 0A

for /d %%f in (D:\www\*) do (
D:
cd %%f
chdir
git pull
)
pause

Traversing the D: \ www \ folder, one by one execution git pull, because the cross disk, you must add D:

Guess you like

Origin www.cnblogs.com/lyc94620/p/12088290.html