Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Not a <em>direct</em> experience, but:</p> <ul> <li>This <a href="https://stackoverflow.com/questions/1549578/git-and-pbxproj">SO question</a> really advices again merging <code>.pbxproj</code> files.</li> </ul> <blockquote> <p>The <code>pbxproj</code> file isn't really human mergable.<br> While it is plain ASCII text, it's a <del>form of JSON</del>. Essentially you want to treat it as a binary file.</p> </blockquote> <p>(hence a <a href="https://stackoverflow.com/questions/2196982/why-is-gitignore-not-including-a-file-prefixed-by-a"><code>gitignore</code> solution</a>)</p> <p>Actually, <a href="https://stackoverflow.com/users/30461/peter-hosey">Peter Hosey</a> adds in the comment:</p> <blockquote> <p>It's a <strong><a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/PropertyLists/Introduction/Introduction.html" rel="nofollow noreferrer">property list</a></strong>, not JSON. Same ideas, different syntax.</p> </blockquote> <ul> <li>Yet, according to <a href="https://stackoverflow.com/questions/2615378/how-to-use-git-properly-with-xcode">this question</a>:</li> </ul> <blockquote> <p>The truth is that it's way more harmful to disallow merging of that .pbxproj file than it is helpful.<br> The <code>.pbxproj</code> file is <del>simply JSON</del> (similar to XML). From experience, just about the ONLY merge conflict you were ever get is if two people have added files at the same time. The solution in 99% of the merge conflict cases is to keep both sides of the merge.</p> </blockquote> <p>So a merge 'union' (with a <a href="https://stackoverflow.com/questions/1910444/git-merge-s-theirs-needed-but-i-know-it-doesnt-exist/1910479#1910479"><code>gitattributes</code> merge directive</a>) makes sense, but do some test to see if it does the same thing than the script mentioned in the last question.</p> <ul> <li>See also <a href="https://stackoverflow.com/questions/1792174/has-anyone-found-a-way-to-merge-changes-in-xcode-project-or-core-data-model-files">this question</a> for potential conflicts.</li> <li>See the <a href="http://en.wikipedia.org/wiki/Property_list" rel="nofollow noreferrer">Wikipedia article on Property List</a></li> </ul>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload