repos / pgit

static site generator for git
git clone https://github.com/picosh/pgit.git

 1# pgit
 2
 3A static site generator for git.
 4
 5This golang binary will generate a commit log, files, and references based
 6on a git repository and the provided revisions.
 7
 8It will only generate a commit log and files for the provided revisions.
 9
10# usage
11
12```bash
13make build
14```
15
16```bash
17./pgit --revs main --label pico --out ./public
18```
19
20To learn more about the options run:
21
22```bash
23./pgit --help
24```
25
26# inspiration
27
28This project was heavily inspired by
29[stagit](https://codemadness.org/stagit.html)