mirror of
https://github.com/kou029w/dotfiles.git
synced 2025-01-19 00:17:59 +00:00
9 lines
111 B
Text
9 lines
111 B
Text
|
#!/bin/sh
|
||
|
set -e
|
||
|
cd ~/storage/shared/logseq
|
||
|
git pull
|
||
|
git add --all
|
||
|
if git commit -m update; then
|
||
|
git push
|
||
|
fi
|