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
Accepted answer did not work for me but this worked.
Check your set Azure URL with
git config --get remote..url
Reset azure url with following command
git remote set-url
https://@[_].scm.azurewebsites.net:443/.git
Try pushing your code using
git push
It will open windows authentication screen which says to enter credential to connect to https://
Cancel this window. It will prompt the basic credential window which says to enter credential to connect to https://
Enter in your credential and it works.