Authentication failed for Azure Git

后端 未结 18 1192
攒了一身酷
攒了一身酷 2020-12-31 03:19

I\'m trying to clone my webapp in Azure.

When I run git clone https://username@appname.scm.azurewebsites.net:443/appname.git the terminal asks me for my

18条回答
  •  庸人自扰
    2020-12-31 04:14

    Since azure does not support ssh you will have to use your password at least once (in some cases you will not be prompt for password next time)

    Here is an article describe how to set it up

    https://azure.microsoft.com/en-us/documentation/articles/web-sites-publish-source-control/

    And here is how to set up git with Azure: http://weblogs.asp.net/shijuvarghese/building-and-deploying-windows-azure-web-sites-using-git-and-github-for-windows


    Here are the steps that you followed

    If this is your first time setting up a repository in Azure, you need to create login credentials for it.

    You will use them to log into the Azure repository and push changes from your local Git repository. From your web app's blade, click Settings > Deployment credentials, then configure your deployment username and password.

    When you're done, click OK.

    Now do this:

提交回复
热议问题