Authentication failed for Azure Git

后端 未结 18 1230
攒了一身酷
攒了一身酷 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:03

    None of the above solution worked for me.

    The reason why the same error was observed in my deployment was because my password contained a character "@".

    This malformed the Git clone url for my Azure web app. When I changed my password by removing @, it solved this issue. You can change @ to %40 in your connection string as well.

提交回复
热议问题