Reference:
https://docs.microsoft.com/en-us/azure/devops/repos/git/set-up-credential-managers?view=vsts
https://github.com/Microsoft/Git-Credential-Manager-for-Mac-and-Linux/blob/master/Install.md
Update the Homebrew/Linuxbrew formulae to make sure you have the latest versions:brew update
Install the GCM4ML formula:brew install git-credential-manager
Run the GCM4ML in install mode, which will check its requirements and then update the “global” Git configuration file (the one in your home folder):git-credential-manager install
Create local repogit init
Add Azure DevOps remotegit remote add origin https://
Pull from master branchgit pull origin master
Pull from Develop branch (if it exists)git pull origin Develop