Skip to content

Instantly share code, notes, and snippets.

@mikeumus
Last active December 20, 2017 17:37
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 mikeumus/79a85a97f85321bc13c18aa259b01ca7 to your computer and use it in GitHub Desktop.
Save mikeumus/79a85a97f85321bc13c18aa259b01ca7 to your computer and use it in GitHub Desktop.
Mikeumus' .bashrc scripts
function gitRe() {
git st
git co develop
git pl origin develop
}
# Assumes Jest
# https://facebook.github.io/jest
function deJ() {
node --debug-brk ./node_modules/bin/jest.js -i --watch
}
# Requires NPM package "ttab"
# https://www.npmjs.com/package/ttab
function nodeD() {
ttab 'sleep 7s; node debug ::5858' && deJ
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment