Skip to content

Instantly share code, notes, and snippets.

View br8th's full-sized avatar

Vincent Kyalo br8th

  • Microsoft
  • Tromsø, Norway
View GitHub Profile
@br8th
br8th / .bash_profile
Created February 20, 2020 20:08 — forked from JeffreyWay/.bash_profile
Laravel aliases
# laravel new-app
alias laravel="git clone -o laravel -b develop https://github.com/laravel/laravel.git"
alias artisan="php artisan"
alias migrate="php artisan migrate"
alias serve="php artisan serve"
alias dump="php artisan dump"
alias t="phpunit"
# Generators Package
@br8th
br8th / .bash_profile
Created February 20, 2020 20:05 — forked from JeffreyWay/.bash_profile
Prettier git logs
alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"