dotfiles/modules/shell/fish/functions/syncnotes.fish
2022-05-06 09:44:21 -04: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