Created
July 24, 2016 02:03
-
-
Save aikchun/f752cbc1f16cc896542934f0ea192270 to your computer and use it in GitHub Desktop.
aliases I generally use
This file contains hidden or 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
# general shortcuts | |
alias home="cd ~" | |
alias ls="ls -lG " | |
alias lsla="ls -laG " | |
# Git Shortcuts | |
alias gs="git status" | |
alias ga="git add" | |
alias gaa="git add ." | |
alias gc="git commit -m " | |
alias gp="git push" | |
alias gpo="git push origin" | |
#vagrant shorcuts | |
alias vup="vagrant up" | |
alias vhalt="vagrant halt" | |
alias vssh="vagrant ssh" | |
#vagrant with homestead shorcuts | |
alias homesteadssh="cd ~/Homestead && vagrant ssh" | |
alias homesteadup="cd ~/Homestead && vagrant up" | |
alias homesteadhalt="cd ~/Homestead && vagrant halt" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment