Git-backed configuration sync for your development environment.
Devsync is a cross-platform CLI that syncs the configuration files in your home directory across multiple devices using git.
Most dotfiles tools start from the repository and ask you to shape your local system around it. Devsync takes the opposite approach — your real config under HOME is the source of truth, and the git repository is just the sync artifact.
- Track files and directories under your home directory
- Encrypt secrets with age before storing in the repo
- Profiles for syncing different subsets on different machines
- Platform-specific paths across Windows, macOS, Linux, and WSL
- Dry-run previews for both push and pull directions
# Install
npm install -g @tinyrack/devsync
# Initialize
devsync init
# Track some configs
devsync track ~/.gitconfig
devsync track ~/.zshrc
devsync track ~/.ssh/config --mode secret
# Push local state to sync repo
devsync pushFor detailed guides, command reference, and troubleshooting, visit the Devsync documentation site.