ft_chatons/core/tools/push-git.sh
2026-03-02 18:00:24 +01:00

11 lines
236 B
Bash

#!/usr/bin/env bash
cp -r core repo
cd repo
git init -b main
git add .
git commit -m "Update files to the repo"
git remote add origin https://vogsphere.chatons.duckdns.org/marvin/core.git
git push -u origin main --force
rm -rf ../repo