dotfiles/modules/common/shell/fish/functions/syncnotes.fish
2023-02-20 20:37:37 -05:00

8 lines
104 B
Fish

set current_dir $PWD
cd $NOTES_PATH
git pull
git add -A
git commit -m autosync
git push
cd $current_dir