5 lines
182 B
Batchfile
5 lines
182 B
Batchfile
@echo off
|
|
echo Git AutoUpdate
|
|
echo tindevil@nate.com
|
|
for /d %%i in (*) do echo Enterinng "%i" | cd "%i" | git.exe pull --progress -v --no-rebase "origin" master | cd ..
|
|
@pause |