This commit is contained in:
Vomitblood 2025-07-15 04:30:00 +08:00
parent 91f88ab069
commit 7fd9935c5a
3 changed files with 10 additions and 1 deletions

3
.gitignore vendored
View file

@ -1,2 +1,3 @@
# ignore config files in each subdirectory
# */config.json
# */config.json
private/*

4
sync_pull.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/bash
rsync -avz --delete --info=progress2 --stats --no-links --exclude='.git/' mikoshi:/home/mikoshi/data1/webdav/syncs/stardew-valley-mods-nsfw/ ./;
echo "Sync complete. Press Enter to close the terminal...";
read;

4
sync_push.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/bash
rsync -avz --delete --info=progress2 --stats --no-links --exclude='.git/' ./ mikoshi:/home/mikoshi/data1/webdav/syncs/stardew-valley-mods-nsfw/;
echo "Sync complete. Press Enter to close the terminal...";
read;