Skip to content

alexofrhodes/AHK-Git-Updater

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

List github repos on your system and bulk update.

Youtube:
IMAGE ALT TEXT HERE

img
ahk-git-updater

A simpler approach with a batch script:

:: updateGtiRepos.bat
:: %cd% means to to loop all folders in the script's dir
:: or you can pass a specific folder "C:\dir"
@echo off
for /f %%f in ('dir /ad /b %cd%') do (
    cd /d %cd%\%%f
    call git pull
    cd ..
)
pause

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published