I don't think you should ignore the xcshareddata dir. As the name said, this is for shared data, not user data, and should be part of the workspace.
Usually, the Xcode part of my .gitignore file looks like this: DerivedData/ *xcuserdata *.xccheckout Le 14 août 2014 à 20:01, Zachary Turner <[email protected]> a écrit : > If someone from Apple could take a look at this I would appreciate it. First > time using Xcode and I'm not really sure if I got all the right files. > > > On Thu, Aug 14, 2014 at 10:57 AM, Zachary Turner <[email protected]> wrote: > http://reviews.llvm.org/D4912 > > Files: > .gitignore > test/.gitignore > test/functionalities/data-formatter/rdar-12437442/.gitignore > > Index: .gitignore > =================================================================== > --- .gitignore > +++ .gitignore > @@ -28,3 +28,5 @@ > > # We should ignore Xcode-style embedding of llvm/ at lldb root dir. > /llvm/ > +/DerivedData/ > +/lldb.xcworkspace/xcshareddata/ > Index: test/.gitignore > =================================================================== > --- /dev/null > +++ test/.gitignore > @@ -0,0 +1,7 @@ > +# Generated test files > +*.d > +*.o > +*.dSYM/ > + > +# In case the tests crash > +crashinfo.so* > Index: test/functionalities/data-formatter/rdar-12437442/.gitignore > =================================================================== > --- /dev/null > +++ test/functionalities/data-formatter/rdar-12437442/.gitignore > @@ -0,0 +1 @@ > +types.log > > _______________________________________________ > lldb-commits mailing list > [email protected] > http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits _______________________________________________ lldb-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits
