What does HackerNews think of git2html?

github clone of http://hssl.cs.jhu.edu/~neal/git2html/

Language: Shell

You have to setup a git server and a front-end for the repositories. The first part is the easy one: you basically need one server and git installed.

- https://saucecode.bar/posts/09-hosting-your-git-server.html - https://git-scm.com/book/en/v2/Git-on-the-Server-The-Protoco...

For the front-end part, there are some options:

- cgit [1]: uses CGI to dynamically serve your repos, many customize it - git2html [2]: generates static pages

Or you can build your own, I saw two approaches for this:

1. Use the git library [3] or bindings for it: [4] (golang) 2. Call the git CLI from you web server, I had some examples, but forgot them.

--- [1] https://git.zx2c4.com/cgit/about/ [2] https://github.com/Hypercubed/git2html [3] https://libgit2.org/ [4] https://github.com/go-git/go-git

On that list, there are projects like https://github.com/Hypercubed/git2html . It makes a set of static files, which could be uploaded to any static hosting provider, including github pages.
Finally found a magic word that gets me somewhere in the search engines... git2html. [Hypercubed/git2html](https://github.com/Hypercubed/git2html) is the first hit. reading as we speak. Any alternatives / experience greatly appreciated though.

Can't find anything else really, and most discussions are years old. Anyone?