Identity added: /c/Users/Kami/.ssh/HomeServer/id_rsa (Kami@DESKTOP-ESPIPOT)
add to profile
```
echo "env=~/.ssh/agent.env
agent_load_env () { test -f \"\$env\" && . \"\$env\" >| /dev/null ; }
agent_start () {
(umask 077; ssh-agent >| \"\$env\")
. \"\$env\" >| /dev/null ; }
agent_load_env
# agent_run_state: 0=agent running w/ key; 1=agent w/o key; 2=agent not running
agent_run_state=\$(ssh-add -l >| /dev/null 2>&1; echo \$?)
if [ ! \"\$SSH_AUTH_SOCK\" ] || [ \$agent_run_state = 2 ]; then
agent_start
ssh-add
ssh-add ~/.ssh/Signature # Change this to a child directory
ssh-add ~/.ssh/HomeServer # I put ssh keys into its own directory
elif [ \"\$SSH_AUTH_SOCK\" ] && [ \$agent_run_state = 1 ]; then
ssh-add
ssh-add ~/.ssh/Signature # but it doesn't get auto-loaded for that reason
ssh-add ~/.ssh/HomeServer # Applicable for other directories
fi
unset env" > ~/profile
```