Created
July 17, 2014 08:53
-
-
Save gravitano/326a5884f65276375199 to your computer and use it in GitHub Desktop.
My Bash Profile
This file contains 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
# Export The PHP Path From MAMP | |
#export PATH="/usr/local/bin:$PATH" | |
#export PATH=/Applications/MAMP/bin/php/php5.5.3/bin:$PATH | |
export PATH=~/.composer/vendor/bin:$PATH | |
export PATH=vendor/bin:$PATH | |
export PATH="/usr/local/share/npm/bin:$PATH" | |
export PATH="/usr/local/Cellar/python/2.7.7_2/bin:$PATH" | |
export PATH=/Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/bin:$PATH | |
# Mac Vim Stuff | |
export VIM_APP_DIR="/Applications/" | |
# The Aliases | |
alias artisan="php artisan" | |
alias t="phpunit" | |
alias chmod76="find . -type d -print0 | xargs -0 chmod 0755 && find . -type f -print0 | xargs -0 chmod 0644" | |
# Git Workflow | |
alias ga="git add ." | |
alias gs="git status" | |
alias gc="git commit -m " | |
alias gp="git push -u origin master" | |
alias gf="git push -u fortrabbit master" | |
alias gpp="git pull origin master && git push origin master" | |
# Homestead | |
alias vm='ssh [email protected] -p 2222' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment