How to avoid being asked for git passphrase
Jul 23, 2017 · 1 min read
Ok so this is super annoying. Every time i wanted to make git pull/push or whatever my terminal was prompting me for my git passphrase. After some research I found a quite simple solution for my problem. If you’ve got the same struggle and want to get rid of it follow the steps below:
Open your terminal and start your ssh agent with:
eval $(ssh-agent)Add your private key:
ssh-addSave your private key for permanent use:
ssh-add -KHappy hacking…
