repos / git-pr

a self-hosted git collaboration server
git clone https://github.com/picosh/git-pr.git

commit
603c411
parent
5ce2a14
author
Eric Bower
date
2025-12-28 22:19:57 -0500 EST
fix: add branch name to repo details
1 files changed,  +1, -0
M web.go
M web.go
+1, -0
1@@ -501,6 +501,7 @@ func repoDetailHandler(w http.ResponseWriter, r *http.Request) {
2 		Name:        repo.Name,
3 		UserID:      user.ID,
4 		Username:    userName,
5+		Branch:      "main",
6 		Prs:         prdata,
7 		NumOpen:     numOpen,
8 		NumAccepted: numAccepted,