The "Auth fail" message is shown when all authentication mechanisms supported by the server failed; the password dialog will be shown if public-key authentication failed but additional authentication methods are available on the server. One possible reason for this public-key authentication failure is MATLAB finding ~/.ssh/id_rsa or ~/.ssh/id_dsa or ~/.ssh/identity file(s) and attempting to authenticate over SSH with them, but none of these files contained a key which MATLAB was able to work with. Another possible reason is that MATLAB cannot find your ~/.ssh/id_rsa files(s) at all.
MATLAB's Git client requires your private key to be in the (older) RSA format and it cannot work with the (newer) OPENSSH format. Please open your private key file in a text editor; to be compatible with MATLAB it should start with:
-----BEGIN RSA PRIVATE KEY-----
And not with:
-----BEGIN OPENSSH PRIVATE KEY-----
Why might you have different keys in different formats?
This is a combination of factors:
- Older ssh-keygen versions always created keys in the RSA format, so then it would always have worked fine with MATLAB.
- At one point, an "-o" option was added to ssh-keygen, when indeed called with this "-o" option, it would now produce keys in the OPENSSH format. At the time, online instructions (on websites like git-scm.com, github.com, gitlab.com, etc.) about using ssh-keygen varied by website, some did instruct you to explicitly add "-o", some did not. If you did call ssh-keygen with "-o" you would have gotten a key incompatible with MATLAB, if you did not, the key was compatible with MATLAB.
- In current ssh-keygen versions, the OPENSSH format is in fact the default, you no longer have to explicitly add "-o" to get a key in that format. Nowadays you explicitly have to add "-m PEM" to get a key in the RSA format. Most online instructions now instruct you to use ssh-keygen without the "-o" option (since it has no effect anymore anyway) but also without the "-m PEM" option. So nowadays when following most of the online instructions you would get a key that is incompatible with MATLAB.
What is our advice right now?
When creating new keys, you can basically follow online instructions for your preferred platform on how to use ssh-keygen, for example with regards to which key size to use; however:
- If these instructions include adding "-o" to the command line then actually omit this option.
- If these instructions do not include "-m PEM" then please do add this option.
So you would for example get:
ssh-keygen -t rsa -b 4096 -m PEM
Further, it should be possible to convert from OPENSSH to RSA format if you had already created your key in the OPENSSH format:
ssh-keygen -p -m PEM -f ~/.ssh/id_rsa
Where you may need to replace ~/.ssh/id_rsa with your specific private key file.
If you are still experiencing this issue, make sure that your "HOME" environment variable is set as the parent folder of your .ssh folder. So if your .ssh folder is located in
set the HOME variable to:
This can be done system wide on Windows as follows:
- right click on "This PC" in file explorer
- select properties
- then select "advances system settings"
- This brings up a dialog that allows environment variables to be set globally
Alternatively, MATLAB can be launched from a terminal where the HOME environment variable has already been set.
To confirm the value of your "HOME" environment variable, run the MATLAB command:
For 'getenv' to show the path added, I had to add 'HOME' to 'System variables' in the 'Environment Variables' dialog rather than 'User variables for <user>'.
If you are still experiencing this issue after verifying your "HOME" environment variable, try updating to the most recent release of MATLAB.
More information about setting up Git over SSH is available here: