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