如何git clone develop 分支数据到本地

git init
git remote add origin http://git.xxx.com:83/xxx/xxx/xxx.git
git pull origin develop --allow-unrelated-histories 
git fetch origin
git checkout develop

和上传东西到developelop 分支

git add *
git commit -m "wrote a readme file"
git push -u origin develop

相关文章:

  • 2021-12-23
  • 2022-01-10
  • 2022-01-04
  • 2021-05-29
  • 2022-12-23
  • 2021-06-25
  • 2022-12-23
  • 2021-05-16
猜你喜欢
  • 2021-06-14
  • 2022-12-23
  • 2021-07-06
  • 2021-09-22
  • 2021-11-26
  • 2022-02-25
  • 2022-01-17
相关资源
相似解决方案