To allow your GitBash to not ask you for your SSH Key password each time, you can add this code to your .profile
or .bash_profile
file, whichever you have, in your User directory. This will make it so it asks you once when you start git bash and then won’t bug you again until you restart git bash.
env=~/.ssh/agent.env
agent_load_env () { test -f "$env" && . "$env" >| /dev/null ; }
agent_start () {
(umask 077; ssh-agent >| "$env")
. "$env" >| /dev/null ; }