Files
home/Projects/kompose/sync.sh
2025-10-08 10:35:48 +02:00

12 lines
236 B
Bash
Executable File

#!/usr/bin/env bash
git init
git stash
git remote add origin ssh://git@code.pivoine.art:2222/valknar/kompose.git
git fetch && git reset --hard origin/main
git stash pop
git add -A
git commit -m "$1"
git push -u origin main
rm -rf .git