Why does Xcode 4 continually display “Checking source control status” for a git repository?

。_饼干妹妹 提交于 2019-12-21 22:37:26

问题


When I open my project which has a git repo, Xcode continually displays "Checking source control status" at the top of the window. My git repo is working find and I am able to commit changes to it using the command line utility.

Why am I seeing this message? Furthermore, is there any way to get rid of it? I would like to rename my Xcode project, but with this issue, I can't. When trying to rename the project, Xcode gives the error: The operation could not be performed because the repository could not be reached.


回答1:


One workaround, if you don't want to have any interaction with Git in your XCode project would be to move the .git directory elsewhere.

You can still perform any git operation you want from a shell, with the environment variable GIT_DIR set to the external path where the .git has been moved (or adding the option --git-dir=/path/to/external/.git to any of your git commands).

But XCode shouldn't be aware of that external .git and shouldn't try to contact a repo anymore, allowing you to perform any XCode operation you want, like renaming the XCode project.




回答2:


Xcode 4.0 has many great ideas with much half-baked implementation. It's exciting for the future of the tool, and sad for the present. Hopefully 4.3, which will be the next release to coincide with iOS 5 and Lion, will resolve this sort of thing--the docs do talk about addressing some of Xcode's inadequacies w/r/t git.

In the current version, Xcode's interaction with git is so hobbled as to be useless. I started trying to use it and gave up. My advice is, just don't go into the repositories section of the organizer window and continue interacting with your repo on the command line.




回答3:


Go to Preferences in XCODE , select the Source Control TAB and uncheck the "Enable Source Control" button



来源:https://stackoverflow.com/questions/6267762/why-does-xcode-4-continually-display-checking-source-control-status-for-a-git

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!