1
am having a little stress with the opencart checked.cache file that every update asks to do an add/commit/push and every time this has to be done I have headaches with conflicts and etc. I must add this file to my .gitignore
?
1
am having a little stress with the opencart checked.cache file that every update asks to do an add/commit/push and every time this has to be done I have headaches with conflicts and etc. I must add this file to my .gitignore
?
1
Add to your file .gitignore
:
*/checked.cache # elimina somente arquivos com este nome
*.cache # elimina todos os arquivos .cache
If you’ve already committed some file you don’t want, it’s no use just adding in .gitignore
. You will need to remove the file, commit deletion of it, and in addition add the file name in . gitignore.
Browser other questions tagged git ssh
You are not signed in. Login or sign up in order to post.