环境:
两个分支master
和new_master
。
.gitignore
文件在master
中提交,它的内容
...
config/database.yml
...
在new_master
分支中,.gitignore
文件也已提交但内容不同。它不包含config/database.yml
。
场景:
在分支new_master
上,我将分支更改为master
。
git checkout master
一旦我进入分支机构主管,我将找不到config/database.yml
。以前在那里。
问题:
从config/database.yml
切换到new_master
时如何避免删除文件master
?