Stay up to date
Pull the latest config, see what it would change, and keep dot's own requirements healthy.
dot update # pull the repo, then show what would change
dot apply # apply it, when you're ready
dot doctor # dot's own requirements
dot auth status # every login dot uses
dot updatefast-forwards your repo from GitHub, then runsdot checkto show what the new version would change. It never applies.dot doctorchecks what dot itself needs: the Command Line Tools, Homebrew, 1Password with its CLI and SSH agent,gh, Varlock,dot.toml(errors, and values missing from it), and the shell setup. Each problem comes with its fix. No Touch ID.dot auth statuschecks each login: the 1Password CLI,gh, SSH to GitHub,vercel, and each AWS organization indot.toml. It asks for Touch ID (Accounts).
Changes you make on the Mac
Some apps edit their own settings files, and dot links those files from the
repo (Editor), so a change you make in the
app shows up in git diff: commit it or discard it. A preference you
change in System Settings shows up in dot check as a difference: put it
back with dot apply, or change the line in config/ to keep it.
Upstream improvements
Your fork is a normal git repo. To bring in changes from the original, add it as a remote once and merge when you want:
dot cd
git remote add upstream git@github.com:rbadillap/dotfiles.git
git pull upstream main
Conflicts, if any, will be in config/, where your choices differ.