Storing my .emacs.d folder online to sync across computers.
Maybe optional but nice to have.
- git
- ripgrep, rg
- fd
- enchant spell checker (used by jinx)
Create a new github repo from an existing local repo:
git remote add origin https://github.com/miketz/.emacs.d.git
git push -u origin masterDownload from github to a new computer:
git clone https://github.com/miketz/.emacs.d.gitGet latest changes from github:
git pull origin masterPush local changes up to github:
git push origin masterRevert changes to modified files.
git reset --hardRemove all untracked files and directories.
git clean -fd