mirror of
https://github.com/kou029w/dotfiles.git
synced 2025-01-31 06:18:00 +00:00
7 lines
203 B
Bash
Executable file
7 lines
203 B
Bash
Executable file
#!/bin/sh
|
|
cd ~/logseq
|
|
rsync -a ~/storage/shared/logseq/journals/ journals/
|
|
rsync -a ~/storage/shared/logseq/pages/ pages/
|
|
git add --all
|
|
git commit -m update
|
|
rsync -a --update ./ ~/storage/shared/logseq/
|