Skip to content

Instantly share code, notes, and snippets.

@ianunruh
Created November 25, 2013 19:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ianunruh/7647242 to your computer and use it in GitHub Desktop.
Save ianunruh/7647242 to your computer and use it in GitHub Desktop.
Vagrant aliases for ZSH
# Vagrant aliases
alias vs="vagrant ssh"
alias vu="vagrant up --no-provision"
alias vp="vagrant provision"
# Depends on the vagrant-vbox-snapshot plugin
alias vsb="vagrant snapshot back"
alias vst="vagrant snapshot take"
function vr() {
vagrant snapshot back $1
vagrant provision $1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment