Reputation: 1
My project contains files that have the extension .acd; The project also automatically generates backups that are labeled project.BAK000.acd
I would like to use git-ignore to filter out all files with .BAK.acd, but I'm having some trouble, could anyone provide an example?
Upvotes: 0
Views: 38
Reputation: 820
Using your project.BAK000.acd as an example, I'd try adding *.BAK*.acd in the .gitignore file
Upvotes: 1