2016-11-16 22:27:32 +00:00
|
|
|
alias ga="git add -p"
|
|
|
|
alias gc="git commit"
|
2018-04-27 21:10:10 +00:00
|
|
|
alias gca="git commit --amend --no-edit --reset-author"
|
2017-02-23 18:45:25 +00:00
|
|
|
alias gcm="git commit -m"
|
2017-05-08 10:42:28 +00:00
|
|
|
alias gl="git log"
|
|
|
|
alias gs="git status"
|
2019-02-21 01:54:00 +00:00
|
|
|
|
|
|
|
alias gh="github"
|
2017-02-23 18:45:25 +00:00
|
|
|
alias nah="git reset --hard && git clean -fd"
|
2019-02-21 01:54:00 +00:00
|
|
|
alias wip="git add . && git commit -m 'wip'"
|
|
|
|
|
|
|
|
alias l="ls -lah"
|
|
|
|
|
2017-04-06 19:50:44 +00:00
|
|
|
alias p="phpunit"
|
|
|
|
alias pf="phpunit --filter "
|
2018-04-27 21:10:10 +00:00
|
|
|
alias pstorm="phpstorm"
|
2016-11-16 22:27:32 +00:00
|
|
|
alias st="subl"
|
|
|
|
alias stt="subl ."
|
2018-03-19 22:27:17 +00:00
|
|
|
alias web="cd ~/Code"
|
2019-03-21 15:36:18 +00:00
|
|
|
|
|
|
|
alias yd="yarn dev"
|
|
|
|
alias yp="yarn prod"
|
|
|
|
alias ys="yarn serve"
|
|
|
|
alias yw="yarn watch"
|