bunteshaus.de/push.sh

18 lines
281 B
Bash
Executable File

#!/bin/bash
date="$(date +%Y-%m-%d)-test"
git pull --rebase upstream main && \
git push origin && \
exit
git add content/posts
git commit --amend --no-edit
target="origin"
force="-f"
if [ "$1" = "upstream" ]; then
target=upstream
force=""
fi
git push ${target} ${force}