Created
October 24, 2019 16:04
-
-
Save JuanLengyel/3e9e919776099afab583843e928ee779 to your computer and use it in GitHub Desktop.
Fetch from all remote for all the repositories in current directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
for /d %%i in (%cd%\*) do ( | |
echo ************************************************************************* | |
echo "%%i" | |
cd "%%i" | |
echo ----------------------------------------- | |
echo fetch --all -v | |
git fetch --all -v | |
echo ----------------------------------------- | |
echo ************************************************************************* | |
) | |
cd .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment