πGetting Started
Software and GitHub Setup
New Computer Setup
The majority of setup can be done by following the README on the bustIT Github repo: https://github.com/leblanck/bustit
The following list of software either are not in brew, or have not been added to the array in that repo (yet).
Use brew search --casks
for additional software/casks that are available

GitHub SSH Setup
Adapted from the following article. Please see article for more information.
Check For Existing Keys
In terminal, run:
$ ssh-keygen -t rsa -b 4096 -C "[email protected]"
Press enter to accept the default save location of
~/.ssh/id_rsa
Enter a secure passphrase (If need save it in 1Password)
Add Key to SSH Agent
Start SSH Agent in background:
$ eval "$(ssh-agent -s)"
Add the following to
/.ssh/config
; if it does not exist create it using:touch /.ssh/config
Host * AddKeysToAgent yes UseKeychain yes IdentityFile ~/.ssh/id_rsa
Add SSH private key to ssh-agent and store in keychain:
$ ssh-add -K ~/.ssh/id_rsa
Add Key to Github
Follow this article if needed: https://help.github.com/en/articles/adding-a-new-ssh-key-to-your-github-account
Last updated
Was this helpful?