category like:
/Script/tiu_adfsfdfdsff.js /Script/tiu_adfsfdfdsff.js ... /CSS/tiu_adfsfdfdsff.css /CSS/tiu_adfsfdfdsff.css ...
I want to ignore the tiufiles my .gitignore files:
CSS/tiu*.css Script/tiu*.js
but it doesnโt work?
if you want to ignore all tiu * files, use the global template (without specifying a directory first):
tui*.css
If this does not work, here are the rules for templates: http://git-scm.com/docs/gitignore
If they are already added to the repository, you need to remove them from the repo without deleting the files. Do this with:
git rm --cached /Script/tiu*
, . git status git add ( git commit -a).
git status
git add
git commit -a