Local Repository in Xcode 4

一笑奈何 提交于 2019-12-05 18:59:03

I was looking for an answer to the same problem. What I have done is followed the steps given by 'adymitruk' and in addition to that from the organizer window of XCode I selected 'Add Working Copy' option and selected my project folder where I had executed the git commands.

Then I double clicked the XCode project file (file with extension '.xcodeproj') from the Repository in Organizer window and that opened my project in XCode. This seems to have worked.

Some documentation from apple can be found at: http://developer.apple.com/library/mac/#documentation/IDEs/Conceptual/Xcode4TransitionGuide/SCM/SCM.html%23//apple_ref/doc/uid/TP40009984-CH7-SW10

Refer the following document's section "Add Git or Subversion Version Control to an Existing Project" which includes the Git commands: http://developer.apple.com/library/ios/#documentation/ToolsLanguages/Conceptual/Xcode4UserGuide/SCM/SCM.html%23//apple_ref/doc/uid/TP40010215-CH7-SW9

for git all you need is

git init

add a proper list of files/directories to ignore in the .gitignore file

git add .gitignore
git commit -m "initial init"

then add all the files

git add . -A
git commit -m "initial code commit"

at the top level.

Similar steps for SVN but I would not recommend using SVN for a number of reasons.

hope this helps

Whilst looking for the answer to this question I found this post and it's solution.

In terminal cd to the project folder you want to put under versioning

"git init"

"git add ."

reboot XCode and it should detect that it is under git versioning and you can use the internal tools

Source: I found it on this site http://www.lastrayofhope.com/2011/03/25/xcode4-adding-local-git-repository-to-a-xcode3-project/

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