Evitar a fusão de um arquivo do mestre com o Git

Emoutra pergunta recomenda-se usar.gitattributes a fim de manter o arquivo rastreado, mas não mesclado em uma ramificação diferente, mas meu caso de uso abaixo parece não funcionar.

mkdir git
cd git
git init
echo "B" > b.txt
git add b.txt 
git commit -m 'Initial commit'

echo "b.txt merge=keepMine" > .gitattributes
git add .gitattributes 
git config merge.keepMine.name "always keep mine during merge"
git config merge.keepMine.driver "keepMine.sh %O %A %B"
git commit -m 'Ignore b.txt'

git checkout -b test # Create a branch
git checkout master # Back to master and make change
echo "Only in master" > b.txt
git commit -a -m 'In master'

git checkout test
git merge master # The change in b.txt is being merged...

Qualquer ideia? Obrigado..

questionAnswers(2)

yourAnswerToTheQuestion