I have an Xcode project under git, and I have an "experimental" branch of my "master" branch. Both branches diverge from the branch (so there is no fast forward!), And I combine the "experimental" in my "magic" branch.
I installed the .gitattributes file to process a specific Xcode file (project.pbxproj) as a binary file, since it should be treated as such. However, I am not sure how to merge it. I'm not sure what this particular file is doing, but if, for example, it processed the files that were added to the project, I would not be able to combine them, and therefore I would have to manually add certain files to the project (perhaps without remembering all of them ) How do others deal with this situation?
Also, I read that you need to manually update the binaries (obviously) or copy different versions. However, as soon as I enter the merge process, the file in my working copy is the "main" version. How can I access the "experimental" version? I cannot verify this, as this will disrupt the merge process.
Thank you for your time!
git xcode
Michael waterfall
source share