Skip to content

Instantly share code, notes, and snippets.

@nickautomatic
Last active January 19, 2017 01:52
Show Gist options
  • Select an option

  • Save nickautomatic/3aba0e4c24e37972f057 to your computer and use it in GitHub Desktop.

Select an option

Save nickautomatic/3aba0e4c24e37972f057 to your computer and use it in GitHub Desktop.
## General:
alias ll='ls -alFh --color'
alias x='exit'
## Git:
alias ga='git add'
alias gb='git branch'
alias gco='git checkout'
alias gcm='git commit -m'
alias gd='git diff'
alias gl="git log --graph --date-order --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(yellow) %an %Creset' --abbrev-commit --date=relative"
alias gm='git merge'
alias gpl='git pull'
alias gps='git push'
alias gr='git remote'
alias grb='git rebase'
alias grs='git reset'
alias gs='git status'
## FuelPHP:
alias oil='php oil'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment