Skip to content

Instantly share code, notes, and snippets.

@manfromanotherland
Created December 3, 2014 17:34
Show Gist options
  • Save manfromanotherland/2684db6bac8cc04ed2f2 to your computer and use it in GitHub Desktop.
Save manfromanotherland/2684db6bac8cc04ed2f2 to your computer and use it in GitHub Desktop.
# Set architecture flags
export ARCHFLAGS="-arch x86_64"
# Ensure user-installed binaries take precedence
export PATH=/usr/local/bin:$PATH
export PATH="/usr/local/mysql/bin:$PATH"
export PATH="/usr/local/git/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:$PATH"
# Load .bashrc if it exists
test -f ~/.bashrc && source ~/.bashrc
# Some shortcuts, cortesy of http://markdotto.com/2011/11/02/how-to-deploy-sites-via-github/
alias sites='cd ~/Sites'
alias add='git add .'
alias push='git push origin head'
alias pull='git pull'
alias pp='pull && push'
alias st='git status'
alias master='git checkout master'
alias editbash='sublime ~/.bash_profile'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment