Last active
April 5, 2016 19:57
-
-
Save whyvez/4c0bcc03a730e1bfeef8ea74c4a684fc to your computer and use it in GitHub Desktop.
minimal osx gitiup script
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
#!/usr/bin/env bash | |
# install apple command line tools | |
xcode-select --install | |
# install homebrew | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# bins | |
brew install git | |
brew install awscli | |
brew install docker-machine | |
brew install docker | |
brew install docker-compose | |
# install cask in order to install mac apps from homebrew | |
brew install caskroom/cask/brew-cask | |
# apps | |
brew cask install google-chrome | |
brew cask install sublime-text | |
brew cask install iterm2 | |
brew cask install google-drive | |
brew cask install slack | |
brew cask install zoom |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment