1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-05-27 23:08:02 +02:00
This commit is contained in:
Jesse Duffield 2024-06-29 18:08:17 +10:00
parent bcb70119bb
commit a8edf269f1

View File

@ -287,6 +287,10 @@ func getRemotesToOwnersMap(remotes []*models.Remote) map[string]string {
continue
}
if !strings.Contains(remote.Urls[0], ":") {
continue
}
res[remote.Name] = getRepoInfoFromURL(remote.Urls[0]).Owner
}
return res