所以,我試圖通過使用櫻桃挑選應用舊的提交,但似乎比我想象的更困難。如何在Git上應用舊提交?
這是bash的樣子......
--HEAD IS IN THE MASTER BRANCH-
git cherry-pick 6a0c632
error: could not apply 6a0c632...
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'
我一直在使用Git只有2個月,我所使用的唯一命令是基本的:添加,提交,推,拉...
您需要清理的衝突,看到http://stackoverflow.com/questions/585844/merging-with-git-mergetool – martin
嗯,你是在正確的軌道上爲止。接下來你必須[解決合併衝突](https://help.github.com/articles/resolving-a-merge-conflict-from-the-command-line/)。 –