zsh: Adjust aliases
This commit is contained in:
parent
f5d5fdf289
commit
796cff4d80
1 changed files with 3 additions and 4 deletions
|
@ -38,11 +38,10 @@ alias seed="php artisan db:seed"
|
||||||
alias serve="php artisan serve"
|
alias serve="php artisan serve"
|
||||||
|
|
||||||
# PHP
|
# PHP
|
||||||
alias cfresh="rm -rf vendor/ composer.lock && composer i"
|
alias cfresh="rm -rf vendor/ && composer i"
|
||||||
|
|
||||||
# JS
|
# JS
|
||||||
alias nfresh="rm -rf node_modules/ package-lock.json && npm install"
|
alias nfresh="rm -rf node_modules/ && pnpm install"
|
||||||
alias watch="npm run watch"
|
|
||||||
|
|
||||||
# Git
|
# Git
|
||||||
alias gst="git status"
|
alias gst="git status"
|
||||||
|
@ -53,7 +52,7 @@ alias amend="git add . && git commit --amend --no-edit"
|
||||||
alias commit="git add . && git commit -m"
|
alias commit="git add . && git commit -m"
|
||||||
alias diff="git diff"
|
alias diff="git diff"
|
||||||
alias force="git push --force"
|
alias force="git push --force"
|
||||||
alias nuke="git clean -df && git reset --hard"
|
alias nuke="git clean -dxf && git reset --hard"
|
||||||
alias pop="git stash pop"
|
alias pop="git stash pop"
|
||||||
alias pull="git pull"
|
alias pull="git pull"
|
||||||
alias push="git push"
|
alias push="git push"
|
||||||
|
|
Loading…
Add table
Reference in a new issue