What specific syntax needs to be used in order for a computer at an arbitrary location on the internet (location A) to trigger a git push
from a public GitHub repository github.com/someuser/source-repo
(location B) to a private Azure Git Repo NameOfAzdoOrganization@dev.azure.com/NameOfAzdoOrganization/NameOfAzdoProject/_git/NameOfAzdoProject
(location C)?
The empty remote Azure Git Repo (location C) gives the following code to push from a local repo at location A to populate remote location C:
git remote add origin https://NameOfAzdoOrganization@dev.azure.com/NameOfAzdoOrganization/NameOfAzdoProject/_git/NameOfAzdoProject
git push -u origin --all
But what command needs to be run on location A in order to push from location B to location C?