💾 Save files
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add justfile

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