Improved list-commits.ps1

This commit is contained in:
Markus Fleschutz
2021-03-10 16:00:16 +01:00
parent 9d4b5a7b18
commit df7587b122
6 changed files with 19 additions and 20 deletions

View File

@ -21,8 +21,8 @@ try {
get-childItem $ParentDir -attributes Directory | foreach-object {
set-location $_.FullName
& git fetch --recurse-submodules
if ($lastExitCode -ne "0") { throw "'git fetch --recurse-submodules' failed" }
& git fetch --all --recurse-submodules
if ($lastExitCode -ne "0") { throw "'git fetch --all --recurse-submodules' failed" }
set-location ..
}