11 lines
211 B
Bash
11 lines
211 B
Bash
#!/usr/bin/env bash
|
|
|
|
cd ../
|
|
cp -r * core/
|
|
cd core
|
|
git init
|
|
|
|
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 |