2

I need to remove these Iconr files from the project\commit but I cant find them in the project folder (even in the hidden files).

I can't perform any commit with these files, how can I remove them?

enter image description here

random
  • 9,774
  • 10
  • 66
  • 83
Asi Givati
  • 1,348
  • 1
  • 15
  • 31
  • possible duplicate of [Remove weird 'Iconr' file from staging](http://stackoverflow.com/questions/22589978/remove-weird-iconr-file-from-staging) – squarefrog Dec 03 '14 at 11:33

1 Answers1

0

These files are created by some external apps such as Folderol which are used for highlighting/coloring your folders. Remove that app, or add these files into gitignore files, either to:

  • .gitignore inside your repository root,
  • global .gitignore, e.g.

    git config --global core.excludesfile ~/.gitignore
    
  • into explicit repository exclude file (.git/info/exclude) inside your repository root.

See: Using Git / Ignoring files

To delete them, try:

find . -type f -name 'Icon??' -print -delete
kenorb
  • 155,785
  • 88
  • 678
  • 743