Some context: trying to clone a repo with ssh url from git BASH, but getting the following error:
Could not create directory '/c/Usersusername/.ssh'
The authenticity of host '...' can't be established.
Why are the Users and username subdirectories getting concatenated? Is this expected? I'm assuming this is causing the error and the failed clone request.
From git BASH:
$ echo $HOME
/c/Usersusername
From Windows cmd:
C:\ echo %HOME%
C:/Users/username
I've tried $ setx home "C:/Users/username"
.