1
0
mirror of https://github.com/tboerger/nixos-config synced 2025-04-06 07:19:05 +02:00
github.com-tboerger-nixos-c.../profiles/thomas/scripts/git-gh-pages.sh
2024-11-24 16:13:14 +01:00

28 lines
510 B
Bash
Executable File

#!/usr/bin/env bash
set -e
[ "$1" = "-h" ] && exec sed -ne '/^#/!q;s/.\{1,2\}//;1d;p' < "$0"
workdir="$(mktemp -d -t gh-pages.XXXXXXXXXX)"
repo="${1}"
if [[ -z "${repo}" ]]; then
exec sed -ne '/^#/!q;s/.\{1,2\}//;1d;p' < "$0"
exit 1
fi
pushd ${workdir} >/dev/null
git init
git checkout --orphan gh-pages
touch index.html
git add index.html
git commit -m 'chore: initial commit'
git remote add origin https://github.com/${repo}.git
git push -u origin gh-pages
popd >/dev/null
rm -rf ${workdir}