Last active
April 24, 2018 15:28
-
-
Save zdavis/4b59449ee5c9954cedd41687733c3d48 to your computer and use it in GitHub Desktop.
Getting off Boxen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Removing Boxen | |
/opt/boxen/repo/script/nuke --all --force | |
# Removing boxen stuff from git config. Anything related to credentials or boxen likely needs to be removed. | |
git config --global --edit | |
# I had to remove homebrew git, which boxen seems to have done weird things to | |
brew uninstall git | |
# Make sure that brew works. Fix any problems. I had to uninstall a few php-related homebrew things to get doctor to pass. | |
brew update-reset | |
brew doctor --debug | |
# Install strap; don't attempt this until brew update and brew doctor works. | |
# This command will update your computer. It might even update it to High Siera. | |
cd ~/src | |
git clone https://github.com/MikeMcQuaid/strap | |
cd strap | |
bash bin/strap.sh --debug | |
# Tap the castiron homebrew bootstrap tap. | |
brew tap castiron/bootstrap |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment