Skip to content

Instantly share code, notes, and snippets.

@elierotenberg
Created December 15, 2014 16:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elierotenberg/3c14ecb894c10fa284bb to your computer and use it in GitHub Desktop.
Save elierotenberg/3c14ecb894c10fa284bb to your computer and use it in GitHub Desktop.
Usefule .bashrc additions
alias git-patch="git add -A && git commit -m"
alias npm-patch="npm version patch && git push && git push --tags && npm publish"
alias npm-minor="npm version minor && git push && git push --tags && npm publish"
alias npm-major="npm version major && git push && git push --tags && npm publish"
alias npm-upgrade="npm cache clear && npm-check-updates -u && npm install"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment