I have a workspace with several projects inside. Everything in git repository. I enable Authors view in the editor.
Actual result:
Files in some of the projects do have authors and everything works, while in other projects, it just writes Unable to Load Author Information
. As far as I can see, this depends on the project. All files in one project show correct info, while all files in another don't show it at all. While all the projects in the workspace are in git repository and everything else works fine.
Expected result:
All files under git repository should show authors information from git regardless of the project.
Is there anything I can try to fix this or at least gather debug information that would be helpful for a bug report?
I had the same problem - which appears to be the path of the file (in the .pbx was not correct because of case sensitivity.
If you look at the file's "File Inspector" (i.e., the window on the right of the code), see if the path shown matches the exact path (case sensitive) of the file's location. Mine had a lowercase letter for the folder (e.g., "/foo/..") but on the OS it was actually "/Foo/.."
I quit Xcode, then using a text editor I use searched my project.pbxproj for "path = foo". I found it in a section listing my problematic files. Change it to Foo
.
Start Xcode, load the workspace, do a clean and everything seems to work