Jeremy Davis's picture

But I have a couple of points to make.

Firstly, TKLBAM can be used with local storage (although it's nowhere near as cool when not linked to the Hub). Have a read here. FWIW TKLBAM can actually support tons of different targets and protocols...

Secondly, I'm not sure about any pretty UI for it, but the easiest way to put your WP into a git repo is to simply initialise the directory as a git repo. E.g.:

cd /var/www/wordpress
git init
git add .
git commit -m "Initial commit"
To make it auto commit I guess you could set up a cron job to do daily commits. Also to make the backup complete you'd probably also want to dump the DB. You could do that with a cron job too (and if you did the dump to the /var/www/wordpress it could be in the git repo too).

Regardless, thanks for sharing your process and progress! :)