I try to push git repository to Azure Repos using this command git push -u origin --all, it asks for Password for 'https://[email protected]'.
Which password should I enter?
I already set SSH key and uploaded it to Azure DevOps server.
I try to push git repository to Azure Repos using this command git push -u origin --all, it asks for Password for 'https://[email protected]'.
Which password should I enter?
I already set SSH key and uploaded it to Azure DevOps server.
Setting an SSH key would not change anything when using an... HTTPS URL.
In your case, since you are using an HTTPS URL, the password requested would be the itzikgb0643 account password on dev.azure.com.
For SSH, see "Azure/ Use SSH key authentication".
An SSH URL would look like: [email protected]:...
git remote -vcommand and make sure you have cloned using HTTPS or SSH. - Nils