为什么git .gitattributes文件的merge = ours无法正常工作

时间:2018-08-09 02:20:08

标签: git

我有两个分支

$git branch
* master
  test

两个分支都有相同的文件

new_file.html
.gitattributes

这是两个分支中.gitattributes的内容

new_file.html merge=ours

主分支中new_file.html的内容

master

然后在测试分支中new_file.html

test

接下来,我做了以下

git config --global merge.ours.driver true
git merge test
Updating d1d7d9a..535890d
Fast-forward
 new_file.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
cat new_file.html

test

我想念什么吗?

0 个答案:

没有答案