Created
May 5, 2014 15:20
-
-
Save cwardzala/f17c60b359c8f535b7d5 to your computer and use it in GitHub Desktop.
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
# Vagrant aliases | |
# add to your .<shell>rc or .dotfiles | |
alias vst='vagrant status' | |
alias vu='vagrant up' | |
alias vd='vagrant destroy' | |
alias vd!='vagrant destroy -f' | |
alias vh='vagrant halt' | |
alias vh!='vagrant halt -f' | |
alias vp='vagrant provision' | |
alias vr='vagrant reload' | |
alias vrp='vagrant reload --provision' | |
alias vssh='vagrant ssh' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment