diff -r 3ddc29ec33cd -r c2d7a9079853 src/main/kotlin/de/uapcore/lightpit/types/CommitRef.kt --- a/src/main/kotlin/de/uapcore/lightpit/types/CommitRef.kt Wed Aug 07 18:01:11 2024 +0200 +++ b/src/main/kotlin/de/uapcore/lightpit/types/CommitRef.kt Wed Aug 07 18:02:38 2024 +0200 @@ -58,7 +58,7 @@ .map { it.groupValues[1] } .map { it.toIntOrNull() } .filterNotNull() - .forEach { commitId -> add(CommitRef(currentHash, commitId, currentDesc)) } + .forEach { commitId -> addFirst(CommitRef(currentHash, commitId, currentDesc)) } } }