Skip to content

Instantly share code, notes, and snippets.

View julestruong's full-sized avatar
🎯
Focusing

Jules T julestruong

🎯
Focusing
  • BackMarket
  • Paris
  • 14:57 (UTC +02:00)
View GitHub Profile
@cedriclombardot
cedriclombardot / .bash_aliases
Last active August 29, 2015 14:24
My Bash config
alias vh="cd /etc/apache2/sites-available/"
alias ..="cd .."
alias ...="cd ../.."
alias ....="cd ../../.."
alias s="git st"
alias d="git diff"
alias ackk="ack -f | ack"
alias ccc="sudo rm -rf */cache/*"
alias cs="git st | grep modified | cut -d ":" -f2 | xargs -I {} php-cs-fixer fix {} && git st | grep -vw modified | grep src | cut -d "#" -f2 | xargs -I {} php-cs-fixer fix {}"
alias dmagick="git diff -w --word-diff --color-words=."