Created
February 10, 2016 13:22
-
-
Save petebachant/2a37af1c3fbc734713c5 to your computer and use it in GitHub Desktop.
Starting my typical Python development environment on Windows using Git Bash.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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