Skip to content

Instantly share code, notes, and snippets.

@khopkins218
Created July 8, 2010 16:59
Show Gist options
  • Save khopkins218/468305 to your computer and use it in GitHub Desktop.
Save khopkins218/468305 to your computer and use it in GitHub Desktop.
# System-wide .profile for sh(1)
if [ -x /usr/libexec/path_helper ]; then
eval `/usr/libexec/path_helper -s`
fi
if [ "${BASH-no}" != "no" ]; then
[ -r /etc/bashrc ] && . /etc/bashrc
fi
PATH="$PATH:/opt/local/sbin"
PATH="$PATH:/opt/local/bin"
PATH="$PATH:/usr/local/mysql/bin"
PATH="$PATH:/usr/local/bin"
PATH="$PATH:/usr/local/sbin"
PATH="$PATH:/usr/local/mysql/bin"
PATH="$PATH:/opt/local/lib/postgresql83/bin"
PATH="$PATH:/Developer/android-sdk-mac_86/tools"
PATH="$PATH:/usr/local/mongodb/bin"
export PGDATA="/opt/local/var/db/postgresql83/defaultdb/postgresql.conf"
export ARCHFLAGS="-arch x86_64"
export PATH=$PATH
export AUTOFEATURE=true
export EDITOR='mate -w'
alias ep="mate /etc/profile"
alias src="source /etc/profile"
alias ss="script/server"
alias sc="script/console"
alias gca="git commit -am "
alias g="git status"
alias gpo="git push origin"
alias gpom="git push origin master"
alias gpull="git pull origin master"
alias ga="git add ."
alias ls="ls -al"
alias gphm="git push heroku master"
alias gps="git push staging master"
alias gi="sudo gem install --no-ri --no-rdoc"
alias hc="heroku console"
alias hcs="heroku console --app mapachat-staging"
alias hdp="heroku db:pull --app mapachat"
alias repo="git add .; git pull origin master; git push origin master"
# SSH Aliases
# Removed
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment