I excluded a specific folder from git with .gitignore. Today I need to track the files inside, but seems that deleting the line in .gitignore doesn't work.
I tried to do git update-index --no-assume-unchanged -R folder but -R doesn't work, when I do git update-index --no-assume-unchanged folder he tells me fatal: Unable to mark file media because he is expecting a file not a folder.
So how do I track these files ?
Thank you very much.


git add folder? – Sean Bright Jan 16 at 18:03