# HG changeset patch # User Marc Davis # Date 1678133597 18000 # Node ID 10e2b8595acee2b8214b3a38cdc1f778ab5372e0 # Parent ae546c35dee43767983c4fded06a6a79626b9187 list all branches diff -r ae546c35dee4 -r 10e2b8595ace init40-git.gradle --- a/init40-git.gradle Mon Mar 06 15:11:10 2023 -0500 +++ b/init40-git.gradle Mon Mar 06 15:13:17 2023 -0500 @@ -810,7 +810,7 @@ .findAll { it != null } .sort { v1, v2 -> v2 <=> v1 } - def branches = "git branch --remote".execute().text.split("\n") + def branches = "git branch --all".execute().text.split("\n") .findAll { it.contains('release') || it.contains('hotfix') } .collect { it.replaceAll('\\s+', ' ').split(' ')[1].split('/')[2] - 'v' } .collect { new Version(*it.split('\\.')*.toInteger()) }