Skip to content

Instantly share code, notes, and snippets.

@MatthieuScarset
Last active March 20, 2017 08:12
Show Gist options
  • Save MatthieuScarset/81eaef185cee7d8793f83000f53ab6e2 to your computer and use it in GitHub Desktop.
Save MatthieuScarset/81eaef185cee7d8793f83000f53ab6e2 to your computer and use it in GitHub Desktop.
My custom bash aliases
# Rexecute last cmd as root
alias fuck='sudo $(history -p \!\!)'
# Folders related aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
# Typo (because I type quick and dirty...)
alias cc='clear'
alias claer='clear'
alias cear='clear'
alias cealr='clear'
# Git related aliases
alias gitu='git status'
alias gitcancel='git reset --soft HEAD@{1}'
alias gitlog='git log --all --graph --oneline --decorate'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment