You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's master instead of main according to the documentation flow.
I had an error when i was running my task with command below: for example
az acr task run --registry $ACRname --name taskhelloworld
because of main written in the url instead of master. According to the documentation flow it is master which must be there in order to have no problems for reader to execute this functionality. Otherwise user would have error ( ERROR: failed to download context. Please check if the url is incorrect. If it has credentials. Please check if they are expired) even though user would follow instructions as written in the documentation so please update this documentation with this pull request
@@ -192,7 +192,7 @@ Next, execute the following commands to create, commit, and push a new file to y
192
192
echo "Hello World!" > hello.txt
193
193
git add hello.txt
194
194
git commit -m "Testing ACR Tasks"
195
-
git push origin main
195
+
git push origin master
196
196
```
197
197
198
198
You may be asked to provide your GitHub credentials when you execute the `git push` command. Provide your GitHub username, and enter the personal access token (PAT) that you created earlier for the password.
0 commit comments