有2個文件被git跟蹤。git忽略正在跟蹤的文件
config/template.json
config/test.json
我修改了它們,希望永遠忽略它們。我試圖將它們添加到根.gitignore
/config
config/template.json
config/test.json
,並因爲它沒有工作做,也給config
.gitignore
template.json
test.json
問題:當我git pull
,它說:
error: Your local changes to the following files would be overwritten by merge:
config/template.json
config/test.json
Please, commit your changes or stash them before you can merge.
Aborting
我希望我的改變留在本地和被髮送到遠程回購。這是怎麼回事?我沒有忽略這些文件嗎?該怎麼辦?
感謝。我只是'git rm --cached config/test.json',但它在git pull上保持相同的錯誤信息。 – Patrick