-
|
I use devlog on both my laptop and desktop. Is there a way to keep notes in sync? |
Beta Was this translation helpful? Give feedback.
Answered by
adev0x
Feb 27, 2026
Replies: 1 comment
-
|
devlog stores everything in a single JSON file, so you can sync with any file sync tool: # Point devlog at a synced folder
export DEVLOG_DIR=~/Dropbox/.devlogOr keep it in a git repo: devlog --dir ~/dotfiles/.devlog add "my note"
cd ~/dotfiles && git add . && git commit -m "sync notes"Just be careful with concurrent writes from multiple machines. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
adev0x
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
devlog stores everything in a single JSON file, so you can sync with any file sync tool:
Or keep it in a git repo:
Just be careful with concurrent writes from multiple machines.