Back (Current repo: stagit)

fork of stagit, static page generator for git
To clone this repository:
git clone https://git.viktor1993.net/stagit.git
Log | Download | Files | Refs | README | LICENSE

commit 40db5b2c3155e0056d3f2fb38a672ad2eb29bb87
parent bf3da7913687524f683906bc6cb6420515bc5725
Author: root <root>
Date:   Sat,  4 Oct 2025 22:44:13 +0200

remove redundant explainer

Diffstat:
MREADME | 17-----------------
1 file changed, 0 insertions(+), 17 deletions(-)

diff --git a/README b/README @@ -124,23 +124,6 @@ git post-receive hook (repo/.git/hooks/post-receive): # see example_create.sh for normal creation of the files. -Create .tar.gz archives by tag ------------------------------- - #!/bin/sh - name="stagit" - mkdir -p archives - git tag -l | while read -r t; do - f="archives/${name}-$(echo "${t}" | tr '/' '_').tar.gz" - test -f "${f}" && continue - git archive \ - --format tar.gz \ - --prefix "${t}/" \ - -o "${f}" \ - -- \ - "${t}" - done - - Features --------