Skip to content

Instantly share code, notes, and snippets.

@chrisbjr
Created June 25, 2020 10:24
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 chrisbjr/1f707d00ae9a8dd7e818cc1914353a26 to your computer and use it in GitHub Desktop.
Save chrisbjr/1f707d00ae9a8dd7e818cc1914353a26 to your computer and use it in GitHub Desktop.
alias nah='git reset --hard;git clean -df'
alias fresh='php artisan migrate:fresh --seed'
alias art='php artisan'
alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
alias wip="git add . && git commit -m 'wip'"
alias migrate="php artisan migrate"
alias gst='git status'
alias tink='php artisan tinker'
alias ll='ls -alh'
alias cu='composer update -vvv'
alias ci='composer install -vvv'
alias watch='yarn run watch'
alias routes='php artisan route:list'
alias gp='git pull origin'
alias mfs='php artisan migrate:fresh --seed'
alias test='./vendor/bin/phpunit'
alias cs='./vendor/bin/phpcs'
alias gco='git checkout'
alias gcob='git checkout -b'
alias yw='yarn run watch'
alias pull='git pull'
alias fetch='git fetch'
alias push='git push'
alias atail='php artisan tail --lines=200'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment