嗨,我想知道如何合并到不相关的分支中。
在不更新本地代码的情况下该怎么做?谢谢您,我仍在尝试学习有关git的更多信息
答案 0 :(得分:0)
如果您有:
dev-branch
上签出您可以使用该新代码替换当前的工作树:
cd /path/to/local/repo
git checkout dev-branch
git --work-tree=/path/to/other/folder/with/my/code add .
git commit -m "Replace with new code"
git push -u origin dev-branch
答案 1 :(得分:0)
有一种简单但⚠️危险的方式来实现。
git push -u -f
⚠️。 (它表示remote set as tracking branch and do forced update
)注意:请先在开发服务器上进行验证。