all repos — legit @ 30c0f3eea0b2148902c4f4e94c6fa6a63251b665

web frontend for git, written in go

log errors from git.Open
Anirudh Oppiliappan x@icyphox.sh
Sun, 05 Nov 2023 10:03:43 +0200
commit

30c0f3eea0b2148902c4f4e94c6fa6a63251b665

parent

8f9e7f14ff7ef0fef4a4e828e49ee347c72b94d2

2 files changed, 4 insertions(+), 0 deletions(-)

jump to
M readmereadme

@@ -72,6 +72,9 @@ • The default head.html template uses my CDN to fetch fonts -- you may

or may not want this. • Pushing over https, while supported, is disabled because auth is a pain. Use ssh. +• Your remote's default branch must point to one of the listed + repo.mainBranch. (ref: + https://social.alexschroeder.ch/@alex/statuses/01HEA8T69WANTMZSTX0X5YF0WM) • Paths are unveil(2)'d on OpenBSD.
M routes/routes.goroutes/routes.go

@@ -45,6 +45,7 @@

path := filepath.Join(d.c.Repo.ScanPath, dir.Name()) gr, err := git.Open(path, "") if err != nil { + log.Println(err) continue }