git常用命令一、git cherry-pick


在自己的分支查看想要合並的節點的commit id :
Git log —oneline -3   //查看最新的三個提交 commit id
切換到總分支:
Git fetch
Git pull
Git cherry-pick (最新提交的commit id)
error: could not apply 7eb8213... list main
hint: after resolving the conflicts, mark the corrected paths
hint: with 'git add <paths>' or 'git rm <paths>'
hint: and commit the result with 'git commit'
qydeMacBook-Pro:proname qy$ git status
On branch test_all
Your branch is up to date with 'origin/test_all'.
You are currently cherry-picking commit 7eb8213.
  (fix conflicts and run "git cherry-pick --continue")
  (use "git cherry-pick --abort" to cancel the cherry-pick operation)
Changes to be committed:
modified:   src/index.vue
Unmerged paths:
  (use "git add <file>..." to mark resolution)
both modified:   src/utils.js
 
解決src/utils.js中的沖突
 
解決沖突完成
Git add .
Git cherry-pick —continue
Git push


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM