Last active
August 29, 2015 14:14
-
-
Save dozoisch/57029fa3b2108994bf6a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias ..="cd .." | |
alias cd..="cd .." | |
alias ...="cd ../.." | |
alias ....="cd ../../.." | |
alias dl="cd ~/Downloads" | |
alias fuck="sudo $(history -p \!\!)" | |
alias gst="git status" | |
alias gf="git fetch --prune" | |
alias gg="git gui" | |
alias gc="git cola" | |
alias gp="git push origin" | |
alias npms="npm start" | |
alias npmt="npm test" | |
alias npmtnc="npm run test-no-cov --" | |
alias npmtc="npm run test-cov --" | |
alias npmi="npm install" | |
alias npmis="npm install --save " | |
alias npmisd="npm install --save-dev " | |
alias npmo="npm outdated --depth=0" | |
alias npmtw="npm run test-watch" | |
alias npmb="npm run build" | |
alias npmrl="npm run lint" | |
alias npmrc="npm run coverage" | |
alias subl.="subl ." | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment