回滚到某个tag:

git reset --hard 70438034dc

git push -f

 

合并---解决冲突---提交:

Step 1. Fetch and check out the branch for this merge request
git fetch origin
git checkout -b "feature-cacheAuth" "origin/feature-cacheAuth"

Step 2. Review the changes locally

Step 3. Merge the branch and fix any conflicts that come up
git fetch origin
git checkout "origin/develop"
git merge --no-ff "feature-cacheAuth"

Step 4. Push the result of the merge to GitLab
git push origin "develop"

 

相关文章:

  • 2021-11-18
  • 2022-01-08
  • 2022-01-21
  • 2021-12-17
  • 2022-01-12
  • 2022-01-19
  • 2022-12-23
猜你喜欢
  • 2021-10-07
  • 2022-01-12
  • 2022-01-11
  • 2021-08-07
  • 2021-10-20
  • 2021-08-15
  • 2021-05-06
相关资源
相似解决方案