基于基线版本新建分支,并合并之前未合并到基线版本的分支

`合并feature2到feature5继续开发

git checkout -b feature2 origin/feature2

git pull

git checkout -b baseline origin/baseline

git pull

git checkout -b feature5

git merge feature2

解决冲突

git add .

git commit -m "merge private-cloud-statistics to picc_1130"

git push origin feature5`

转载于:https://my.oschina.net/duo8523/blog/2247186

相关文章:

  • 2021-08-21
  • 2022-01-15
  • 2021-11-14
  • 2021-09-26
  • 2022-12-23
  • 2021-11-12
  • 2021-09-17
  • 2021-11-05
猜你喜欢
  • 2021-11-29
  • 2021-09-03
  • 2021-10-15
  • 2021-04-13
  • 2022-01-29
  • 2021-04-05
  • 2022-01-10
相关资源
相似解决方案