Created
July 24, 2016 02:03
-
-
Save aikchun/f752cbc1f16cc896542934f0ea192270 to your computer and use it in GitHub Desktop.
Revisions
-
aikchun created this gist
Jul 24, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ # 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"