Backup Plugins to backup all obsidian files to Github, etc

Doesn’t OneDrive/Google Drive/etc. backup the folder and its contents seamlessly?

For Git, one need make a git command alias/function to add, commit, and push all at the same time. e.g.:

function lazygit() {
        git add .
        git commit -a -m "$1"
        git push
}

This is straightforward, and there are other ways around it, too.

However, I do not know how that could be implemented as an Obsidian plug-in (or invoked by some hotkeys).

Shouldn’t be hard (right?), and many would appreciate it if someone would give that a push! :relieved:

5 Likes