-1

How do I ignore files in following directory?

projectName/Pods/Target Support Files
Itai Klapholtz
  • 196
  • 1
  • 2
  • 15
Ann
  • 1
  • 1
  • 2
    Does this answer your question? [How do I ignore files in a directory in Git?](https://stackoverflow.com/questions/8527597/how-do-i-ignore-files-in-a-directory-in-git) – Itai Klapholtz Mar 05 '21 at 12:28
  • I tried all these options but it doesn't get solved(( – Ann Mar 05 '21 at 12:31

1 Answers1

0

Try to add the following line to gitignore file:

projectName/Pods/Target*Support*Files/

Also should work:

"projectName/Pods/Target Support Files/"
Itai Klapholtz
  • 196
  • 1
  • 2
  • 15