Last active
June 16, 2022 10:44
-
-
Save GalassoLuca/05f8c37b99b89e4fb4810b7c796b283a to your computer and use it in GitHub Desktop.
Bash/zsh aliases
This file contains 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 p="pnpm" | |
alias i="p install" | |
alias u="p uninstall" | |
alias s="p dev" | |
alias t="p test" | |
alias tw="p run test:watch" | |
alias c="code ." | |
alias o="open ." | |
alias rmi="rm -rf node_modules; i" | |
alias rmit="rmi; t" | |
alias rmis="rmi; s" | |
alias gs="git stash" | |
alias gsl="git stash list" | |
alias gsp="git stash pop" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment