15 lines
462 B
Bash
Executable File
15 lines
462 B
Bash
Executable File
#!/bin/sh
|
|
# stagit post-receive script - developed by acidevegas (https://git.acid.vegas/stagit)
|
|
|
|
URL="git.acid.vegas"
|
|
PROTO="https"
|
|
CLONE_URL="git://$URL"
|
|
COMMIT_LIMIT=100
|
|
HTML_DIR="/srv/http"
|
|
|
|
DIR=$PWD
|
|
REPO=$(basename $DIR .git)
|
|
mkdir -p $HTML_DIR/$REPO && cd $HTML_DIR/$REPO && stagit -l $COMMIT_LIMIT -u "$PROTO://$URL/$REPO" $DIR
|
|
ln -sf log.html index.html
|
|
git --git-dir $DIR archive --format=tar.gz -o "$HTML_DIR/$REPO/$REPO.tar.gz" --prefix="$REPO/" HEAD
|