gitpb code is changing

This commit is contained in:
Jeff Carr 2025-02-21 09:33:58 -06:00
parent fa5c6572ff
commit 3ab156a9c4
1 changed files with 38 additions and 36 deletions

View File

@ -81,6 +81,7 @@ func MakeRepoBranchesWindow(repo *gitpb.Repo) *repoBranchesWindow {
grid.NewGroup("Hash") grid.NewGroup("Hash")
grid.NextRow() grid.NextRow()
/*
for _, b := range repo.GetLocalBranches() { for _, b := range repo.GetLocalBranches() {
hash := repo.GetBranchHash(b) hash := repo.GetBranchHash(b)
grid.NewLabel(b) grid.NewLabel(b)
@ -120,6 +121,7 @@ func MakeRepoBranchesWindow(repo *gitpb.Repo) *repoBranchesWindow {
} }
grid.NextRow() grid.NextRow()
} }
*/
return pw return pw
} }