Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XCode Workspace Integrity Error

Tags:

git

xcode

ios

I was commiting and pushing to git. While doing that, I got error "Workspace Integrity". I thought, that error is because I have some unmerged files, then I found out I really had unmerged files. So, finally I merged, fixed and could push to Visual Studio Online, which is my host. Then after that I tried again, but the error was the same. So, I gave it try to downloading from Visual Studio and open that downloaded project. I thought, it will not give me error. Unfortunately, as you may assume too, that didn't work.

I have to fix it, but I don't have any idea what it is. There is no such a solution for that error, which is really strange. It is the same error that was asked on stackoverflow in this link and this link before; both don't have solution.

I really need all of you extremely, that error is a bit scary.

Waiting for your guidance.

like image 689
Kutay Demireren Avatar asked Jul 11 '15 17:07

Kutay Demireren


2 Answers

I found this similar issue and it turned out to be a merge conflict that had snuck into our git repo:

enter image description here

I found it by searching in my project for <<<<< HEAD which revealed a merge error waiting to be resolved in project.pbxproj

Hopefully that helps other people who end up on this stack overflow post.

like image 165
Benjamin Beaumont Avatar answered Nov 17 '22 13:11

Benjamin Beaumont


What I usually do is open the file in version editor and see what has changed. Version editor option

like image 4
Dare2dream Avatar answered Nov 17 '22 14:11

Dare2dream