Skip to content

Instantly share code, notes, and snippets.

@gunharth
Last active February 15, 2017 13:44
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 gunharth/3b3af7b395bb1087323d8b1cbf2bb77e to your computer and use it in GitHub Desktop.
Save gunharth/3b3af7b395bb1087323d8b1cbf2bb77e to your computer and use it in GitHub Desktop.
My bash .aliases file
export PATH="$HOME/.composer/vendor/bin:$PATH"
# Git
alias ga="git add"
alias gaa="git add ."
alias gc="git commit -m"
alias gp="git push"
alias gs="git status"
alias gl="git log"
alias nah="git reset --hard && git clean -df"
#homestead
alias hu="homestead up"
alias hh="homestead halt"
alias hs="homestead ssh"
# Laravel artisan
alias a="php artisan"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment