Hi folks,
So, my usual weekly git question…
I’ve been using the current latest .gitignore from the openframeworks master branch on github and have a couple of questions…
-
In the root .gitignore, in the #xcode files section, should we add xcuserdata to ignore tracking Xcode4 user-dependent files, in the same way that *.pbxuser currently does for Xcode3?
-
In addition to ignoring openFrameworks.a, openFrameworksDebug.a, openFrameworksUniversal.a, should we also ignore libofxiPhone_iphoneos_Debug.a, libofxiPhone_iphonesimulator_Debug.a, which are generated when building for iOS?
-
For local development of our own projects, should we comment out…
#rule to avoid non-official addons going into git
#see addons/.gitignore
addons/**
and
#rule to avoid non-official apps going into git
#see apps/.gitignore
apps/**
…as it’s encouraged that new projects etc follow the existing structure (i.e. own apps within the “apps” folder). Maybe just adding an explanatory comment in the OF gitignore here would help remind users to comment these out for their own project development?