当前位置:   article > 正文

Git 代码协同的使用方法 for Azure DevOps_azure data studio 链接git

azure data studio 链接git

1. 登陆Azure

步骤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
  • 1
  • 2
  • 3

检验查看当前用户的Git账户信息配置,如下,

$ git config --global --list
  • 1

请添加图片描述


2. Git for Azure使用方法

步骤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
  • 1

此时跳出输入口令提示,输入YourAzurePassword。最终,结果如下,

请添加图片描述

步骤2.3. 增加代码到GitTester者一个repository中,如下,

$ cd GitTester
$ touch text
$ git add .
$ git commit -m "add git text"
$ git push origin main --force 
  • 1
  • 2
  • 3
  • 4
  • 5

请添加图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/641537
推荐阅读
相关标签
  

闽ICP备14008679号