Deploy your infrastructure from scratch
Q: Error "Could not open a connection to your authentication agent" A: run following commands from GitBash prompt
ssh-keygen
# generates ~/.ssh/id_rsa (private key) and ~/.ssh/id_rsa.pubeval $(ssh-agent -s)
# initializes SSH Agentssh-add ~/.ssh/id_rsa
# adds private key to the agent