If you have created SSH keys to use on GitHub, Git continues to ask you for your ssh passphrase every time I try to do a pull or a push. So one way to stop Git from asking for your SSH Key passphrase is to add your private SSH Key as follows: First start the SSH agent with: eval $(ssh-agent) Then add your private key to it: ssh-add To save your key … [Read more...] about How to Stop Git From Asking For Your SSH Passphrase on Mac