由于另一个分支中的更改而覆盖master分支中的文件

时间:2019-07-10 16:59:11

标签: git

假设我的主分支中有一个名为index.html的文件,我在另一个分支名称功能中对该文件做了一些更改。如何用功能分支中的index.html文件替换master分支中的index.html文件

我曾经尝试过

> git checkout master
> git merge features

但是它似乎复制了内容从而创建了冗余

1 个答案:

答案 0 :(得分:0)

这是方法:

git checkout feature -- index.html
git commit -m "index.html from feature branch"