Skip to content

Instantly share code, notes, and snippets.

@GalassoLuca
Last active June 16, 2022 10:44
Show Gist options
  • Save GalassoLuca/05f8c37b99b89e4fb4810b7c796b283a to your computer and use it in GitHub Desktop.
Save GalassoLuca/05f8c37b99b89e4fb4810b7c796b283a to your computer and use it in GitHub Desktop.
Bash/zsh aliases
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