snippets/git-dump
gutmet fb921ca742 minimalist replacement for cgit
* just dump current HEAD, nobody cares about anything else anyway
* and if they do, they can use git as once intended
2021-02-24 15:26:48 +01:00

27 lines
499 B
Bash
Executable File

#!/bin/sh
# USAGE:
# Working directory needs to be git repo
# call with name of directory you'd like to dump to
set -eu
DIR="/var/www/git-dump/$1"
files=`git ls-tree --full-tree -r --name-only HEAD`
rm -rf "$DIR"
echo "$files" | while IFS=$'\n' read -r f; do
subdir=`dirname $f`
fulldir="$DIR/$subdir"
mkdir -p "$fulldir"
fullpath="$DIR/$f.txt"
git show HEAD:"$f" > "$fullpath"
if file "$fullpath" | grep -q "text"; then
:
else
echo "Binary file" > "$fullpath"
fi
done