赞
踩
步骤1.1. VS Code,登陆Azure Cloud的Ubuntu环境,如下:
重点: 这里的Azure Cloud的用户名是YourAzureUserName,口令是YourAzurePassword
步骤1.2. 登陆Azure Cloud的Ubuntu环境后,配置Git账户信息,如下,
$ git config --global user.name "YourAzureUserName"
$ git config --global user.email "YourAzureEmail"
$ git config --global credential.helper store
检验查看当前用户的Git账户信息配置,如下,
$ git config --global --list
步骤2.1. 登陆Azure DevOps网页,点击"Clone"按钮,获取Https URL,并点击 “Generate Git Credentials” 获取YourAzurePassword,如下,
步骤2.2. Ubuntu下,通过Git Clone Azure DevOps的项目,命令如下,
$ git clone https://canhuiwang0629@dev.azure.com/canhuiwang0629/GitTester/_git/GitTester
此时跳出输入口令提示,输入YourAzurePassword。最终,结果如下,
步骤2.3. 增加代码到GitTester者一个repository中,如下,
$ cd GitTester
$ touch text
$ git add .
$ git commit -m "add git text"
$ git push origin main --force
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。