💾 Save files
1@_default:
2 just --list
3
4# Commit the current save files
5save:
6 @echo {{ YELLOW }} Saving..{{ NORMAL }}
7 jj commit -m "`date`"
8 @echo {{ GREEN }} Saved{{ NORMAL }}
9
10# Fetch save files from the cloud
11load:
12 @echo {{ YELLOW }} Fetching save files..{{ NORMAL }}
13 jj git fetch
14 jj new main
15 @echo {{ YELLOW }} Save files synced successfully{{ NORMAL }}