英文:
Merging files using git
问题
我有一个问题一直在尝试合并同一个文件,但来自不同分支,所以想象一下:
“number->”代表行号
文件(分支1)
1->print("Hello world");
2->test();
文件(分支2)
1->function1();
我希望合并的输出是这样的
合并文件
1->print("Hello world");
2->test();
3->function1();
我正在使用git和GitHub。
英文:
i have a question i have been trying to merge the same file but from different branches so lets imagine:
"number->" stands for the line number
file(branch1)
1->print("Hello world");
2->test();
file(branch2)
1->function1();
i would like to output of the merge to be like this
mergedfile
1->print("Hello world");
2->test();
3->function1();
Im using git and github.
答案1
得分: 1
无法像你想象的那样强制 Git 合并文件。
我建议:
git checkout branch1
git merge --no-commit branch2
# 自行审查合并的文件...
git add 文件
git commit
英文:
You cannot force GIT to merge files as you imagine.
I suggest to:
git checkout branch1
git merge --no-commit branch2
# Review merged file on your own...
git add file
git commit
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论