This is likely the first repository that will be cloned to a new machine. To setup GitHub credentials follow along.
ssh-keygen -t ed25519 -C "your_email@example.com"Enter a file in which to save the key (/Users/YOU/.ssh/id_ed25519):
github_ed25519Start the ssh-agent.
eval "$(ssh-agent -s)"Create an SSH config that references the generated key.
vim ~/.ssh/configPaste the following.
Host *
AddKeysToAgent yes
UseKeychain yes
Host github.com
IdentityFile ~/.ssh/github_ed25519Add the private key to the keychain.
ssh-add --apple-use-keychain ~/.ssh/github_ed25519Copy and paste the following into the GitHub settings.
pbcopy < ~/.ssh/github_ed25519.pub/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"git clone git@github.com:obj-p/.files.gitTo create symlinks for the dotfiles.
make linkscd ~ && brew bundle