是否可以直接在xCode中将我提交的旧提交合并到主分支中。我知道我可以将我当前的分支合并到另一个分支,但有时我继续处理我的项目,而旧的提交正在测试。当验证该提交时,我想将它合并到xCode中的主分支中,是否可能?
谢谢。
答案 0 :(得分:0)
git log
并找到具体的提交git fetch origin <commit_id>
git checkout FETCH_HEAD
git checkout -b <branch_name>
git merge -s ours master
git checkout master
git merge <branch_name>
git push --all