sync obsidian notes for free with git in 5 minutes

Опубликовано: 01 Июнь 2026
на канале: hacking with bsweat
411
18

download obsidian from https://obsidian.md/download
download git form https://git-scm.com/install/
make an account at github.com

do these commands in git-bash
cd Documents/Obsidian
git config --global user.email "[email protected]"
git config --global user.name "username"
git init
git add -A
git commit -m "initial commit"
git remote add origin https://github.com/YOURUSERNAME/obsidian-v...
git push -u origin master

on your other device, do
cd Documents
git clone https://github.com/YOURUSERNAME/obsidian-v...