asdf
This commit is contained in:
parent
91f88ab069
commit
7fd9935c5a
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
# ignore config files in each subdirectory
|
# ignore config files in each subdirectory
|
||||||
# */config.json
|
# */config.json
|
||||||
|
private/*
|
4
sync_pull.sh
Executable file
4
sync_pull.sh
Executable 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
4
sync_push.sh
Executable 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;
|
Loading…
Reference in a new issue