Thank you Martin, I had the same but I've found the answer, may be it'll help someone else; I didn't know that when a file is already being tracked by Git, adding it to .gitignore don’t stop Git from tracking it!!! from this http://www.gitready.com/beginner/2009/01/19/ignoring-files.html I used: git rm -r --cached app/tmp and everything is fine now!
On 20 mai, 15:43, Martin Westin <[email protected]> wrote: > I have this in my repository exclude file (.git/info/exclude) > > tmp/**/* > > On May 20, 3:11 pm, ezekfred <[email protected]> wrote: > > > Hello, > > > I'm having some issues with Git and Cakephp: > > I'm working on mac and my .DS_Store files are already ignored > > [core] > > excludesfile = /Users/ezekfred/.gitignore > > > but I can't manage to ignore app/tmp/* files > > > Has anyone found a solution? > > which files must I create and where? > > > thanks for your help! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
