Setting up ssh key for a dash enterprise Generating a New SSH Key Pair In this step, you'll generate a new SSH key pair and configure the SSH Agent to remember your passphrase so that you don't have to enter it each time you deploy your app with git push . The instructions below assume that you are using Git Bash, which is included in the official Git for Windows release. To generate a new SSH key pair and configure the SSH Agent: In Git Bash, generate a new key pair: ssh -keygen -t rsa -b 4096 -C "
[email protected]" replacing the example email address with your email address. When prompted for a location to save the key pair, press Enter to accept the default location. When prompted, enter a passphrase. Check that the SSH Agent is running: eval $( ssh -agent -s) Add your SSH private key to the SSH Agent: ssh -add ~/. ssh / id_rsa