Skip to content

Instantly share code, notes, and snippets.

@lance
Forked from adamstac/TODO
Last active January 2, 2016 14:39
Show Gist options
  • Save lance/8318129 to your computer and use it in GitHub Desktop.
Save lance/8318129 to your computer and use it in GitHub Desktop.

Xcode

Install Xcode

Head to the Apple Developer Center to download a copy of the latest Xcode

Homebrew

Install Homebrew

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

Git

Install Git

brew install git

You will also want to setup your Git and GitHub user details

Setting user name and email globally in git

git config --global user.name "Lance Ball"
git config --global user.email "lball@redhat.com"

Git credential caching

git config --global credential.helper osxkeychain

Git aliases

Setup common git aliases.

git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status

Java

Install Java 8

https://jdk8.java.net/download.html

RVM

Install RVM

\curl -sSL https://get.rvm.io | bash -s stable

Install JRuby

rvm install jruby
* Review this article and add new steps as needed: http://blog.therubymug.com/blog/2010/05/20/the-install-osx.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment