Can I use the ssh key to deploy Azure git push?

I created a new Azure AD account and an Azure node web application. I can log in using azure-cli, and I can git push deployment.

However, instead of getting a password hint every time I would like to authenticate with the ssh key. There is a section "Management certificates" on the settings panel of the azure portal, and in the azure CLI there is an option azure account cert export, but I'm not sure if this is what I'm looking for.

+4
source share
2 answers

Azure Web Apps does not support SSH, so you need to use https. However, you only need to install the git remote with such a mess why you ask for a password every time. Here's an article that describes the steps to enable git push for Azure Web Apps, maybe there’s the step you skipped. http://azure.microsoft.com/en-us/documentation/articles/web-sites-publish-source-control/

hope this helps.

+2
source

You can save your git password locally (in windows when using msysgit :)

git config --global credential.helper wincred

for other options, see Is there a way to skip password entry when using https: // on GitHub?

+1
source

All Articles