내 프로젝트에서 .gitignore 파일을 가지고 있는데, 역시 debug_kit.sqlite를 무시하고 싶습니다. 이 파일을 .gitignore에 추가했는데 작동하지 않습니다. rebase 할 때이 파일에 conflit가 있습니다. 파일.gitignore : ignore file does not working cakephp
이# CakePHP 3
/vendor/*
/config/app.php
/tmp/cache/models/*
!/tmp/cache/models/empty
/tmp/cache/persistent/*
!/tmp/cache/persistent/empty
/tmp/cache/views/*
!/tmp/cache/views/empty
/tmp/sessions/*
!/tmp/sessions/empty
/tmp/tests/*
!/tmp/tests/empty
/tmp/debug_kit.sqlite
/logs/*
!/logs/empty
# CakePHP 2
/app/tmp/*
/app/Config/core.php
/app/Config/database.php
/vendors/*
Status API Training Shop Blog About
© 2016 GitHub, Inc. Terms P
'.gitignore'는 * untracked * 파일을 무시하기위한 것입니다. 파일을 추적하면 무시되지 않습니다. 갈등을 해결하십시오. – Biffen
응답을 위해 @Biffen에 감사드립니다. 하지만 어떻게이 파일을 추적 할 수 있습니까? –