Last active
August 29, 2015 14:01
-
-
Save innesm4/674734bd922255078e9b to your computer and use it in GitHub Desktop.
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
export PATH=/Applications/MAMP/bin/php/php5.5.14/bin:$PATH | |
export PATH=~/.composer/vendor/bin:$PATH | |
alias bashpro="sudo sublime ~/.bash_profile" | |
alias reload_profile=". ~/.profile" | |
alias removeforce="rm -rf" | |
alias killDS='find . -name *.DS_Store -type f -delete' | |
alias hconf="sudo sublime /Applications/MAMP/conf/apache/httpd.conf" | |
alias hosts="sudo sublime /private/etc/hosts" | |
alias gs="git status" | |
alias prune="git remote update --prune" | |
alias log="git log" | |
alias pullom="git pull origin master" | |
alias pullos="git pull origin staging" | |
alias pullop="git pull origin production" | |
alias pom="git push origin master" | |
alias pos="git push origin staging" | |
alias pop="git push origin production" | |
alias pbm="git push beanstalk master" | |
alias pbs="git push beanstalk staging" | |
alias pbp="git push beanstalk production" | |
alias rom="git pull --rebase origin master" | |
alias ros="git pull --rebase origin staging" | |
alias rop="git pull --rebase origin production" | |
alias ckm="git checkout master" | |
alias cks="git checkout staging" | |
alias ckp="git checkout production" | |
alias branch="git branch" | |
alias nbranch="git checkout -b" | |
alias mergem="git merge master" | |
alias merges="git merge staging" | |
alias mergep="git merge production" | |
alias lcm="git log -1 --pretty=%B | pbcopy" | |
alias l10cm="git log -10 --pretty=%B | pbcopy" | |
alias add="git add ." | |
alias addu="git add -u" | |
alias ammend="git commit --amend" | |
alias commit="git commit -m" | |
alias stash="git stash -u" | |
alias discard="git clean -df;git checkout --." | |
alias log="git log" | |
alias cu="composer update" | |
alias homestead="ssh [email protected] -p 2222" | |
alias artisan="php artisan" | |
alias migrate="php artisan migrate" | |
alias g:c="php artisan generate:controller" | |
alias g:m="php artisan generate:model" | |
alias g:s="php artisan generate:scaffold" | |
alias codeception="vendor/bin/codecept" | |
alias phpunit="vendor/bin/phpunit" | |
alias envoy="~/.composer/vendor/bin/envoy" | |
alias serve="jekyll serve --watch" | |
alias ..="cd .." | |
alias ...="cd ../.." | |
alias h='cd ~' | |
alias c='clear' | |
alias s='cd sites' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment