Skip to content

Instantly share code, notes, and snippets.

@petebachant
Created February 10, 2016 13:22
Show Gist options
  • Select an option

  • Save petebachant/2a37af1c3fbc734713c5 to your computer and use it in GitHub Desktop.

Select an option

Save petebachant/2a37af1c3fbc734713c5 to your computer and use it in GitHub Desktop.
Starting my typical Python development environment on Windows using Git Bash.
function auth() {
eval `ssh-agent` > /dev/null
ssh-add
}
# Call this function from Git Bash after entering the project dir
function dev() {
atom .
explorer .
jupyter qtconsole --no-confirm-exit &
auth
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment