small fixes

This commit is contained in:
teldra 2022-06-26 17:59:18 +02:00
parent 67c084ef21
commit aebfeb1161
1 changed files with 15 additions and 3 deletions

18
push.sh
View File

@ -1,7 +1,19 @@
#!/bin/bash
echo funzte nicht
exit 1
git add content/news
date="$(date +%Y-%m-%d)"
changedfiles=$(git diff --name-status|awk '{print $2}')
if ! git switch "${date}"; then
git switch -c ${date} upstream/main
fi
git pull --rebase upstream main
git add .
git commit -m "${date}: ${changedfiles}"
git push origin --set-upstream origin/main
exit
git add content/posts
git commit --amend --no-edit
target="origin"
force="-f"