ignore.conf and .gitignore
They don't have the same syntax, so it would be nice to have a conversion method (.gitignore -> ignore.conf) taking recursively into account all the .gitignore files in the source tree. In fact, I wanted to try :) but I've not been able to find a detailed syntax of ignore.conf...
![](https://secure.gravatar.com/avatar/2a43aa43ba910dd1cd7620b8f4e57290?size=40&default=https%3A%2F%2Fassets.uvcdn.com%2Fpkg%2Fadmin%2Ficons%2Fuser_70-6bcf9e08938533adb9bac95c3e487cb2a6d4a32f890ca6fdc82e3072e0ea0368.png)
-
Moritz Voss commented
I would like to see feature parity, .gitignore is a de-facto worldwide standard, and their glob notation is intuitive and powerful.
Something like this ought to work in PlasticSCM, yet it doesn't even preserve the comments :(
```
# Ignore the Cache-file since it is updated locally either way
/[Aa]ssets/**/FMODStudioCache.asset
/[Aa]ssets/**/FMODStudioCache.asset.meta
/[Aa]ssets/Plugins/FMOD/Cache.meta
/[Aa]ssets/Plugins/FMOD/Cache/Editor.meta
``` -
Jordan Pickwell commented
Another option could be to support .gitignore in-place of ignore.conf.
-
Adminpsantosl (Admin, plasticscm) commented
Nice one! Looks a little bit difficult but doable! :)