mirror of
https://github.com/kou029w/dotfiles.git
synced 2025-01-18 16:07:59 +00:00
9 lines
215 B
Bash
Executable file
9 lines
215 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd ~/logseq
|
|
rsync -a ~/storage/shared/logseq/journals/ journals/
|
|
rsync -a ~/storage/shared/logseq/pages/ pages/
|
|
git add --all
|
|
if git commit -m update; then
|
|
rsync -a ./ ~/storage/shared/logseq/
|
|
fi
|