Created
August 5, 2014 16:36
-
-
Save sahibalejandro/5dbae826e19508a4e2b6 to your computer and use it in GitHub Desktop.
My aliases file
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 PATH=$PATH:/usr/local/mysql/bin:/Users/sahib/bin | |
# | |
# Vagrant commands | |
# | |
alias vi="vagrant init" | |
alias vu="vagrant up" | |
alias vh="vagrant halt" | |
alias vd="vagrant destroy" | |
alias vm="vagrant ssh" | |
# | |
# Vagrant ups | |
# | |
alias vmysql="cd /Users/sahib/www/mysql; vu" | |
alias vweb="cd /Users/sahib/www/vagrant; vu" | |
# | |
# Git commands | |
# | |
alias gi="git init" | |
alias gs="git status" | |
alias ga="git add --all" | |
alias gc="git commit" | |
alias gp="git push" | |
alias gfp="git ftp push" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment