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
Assuming you're entering the correct password each time, it might be a delay/propagation issue.
You can also use your Site-Level credentials as detailed on this wiki page. You can get these by downloading your publishing credentials in the Portal via the "Get Publish Profile" option on your main WebApp bar. The user name / password can then be found in the yourapp.PublishSettings
file and will look something like userName="$yourapp" userPWD="ABC123"
. This is only mentioned as a workaround if your User-Level credentials are not working (which they should be if they are correct).