dotfiles/modules/shell/fish/functions/syncnotes.fish

8 lines
104 B
Fish
Raw Normal View History

2022-04-30 14:21:43 +00:00
set current_dir $PWD
cd $NOTES_PATH
git pull
git add -A
git commit -m autosync
git push
cd $current_dir