We are having some problems with the VCS organisation of our Cordova project. We've organised our project according to this SO answer. Our current .gitignore:
.cordova/*
plugins/*
platforms/*
After doing some work on the project I notices that it is sometimes necessary to modify the built app in the platforms/ folder, e.g. changing the iOS icon. Now my questions is what is the best way to manage this? Should we use two separate repositories (or more), one for the app/www/ folder and then one each for app/platforms/*os*? Or put all files in one repository?