1

我知道在这个主题上有一些问题,但它没有给我真正的答案。

我想使用 GIT 存储库来存储我的项目并创建一些分支。我在 xcode 4 中的其他项目上使用 GIT 存储库,但在 meni 下的 xcode 5 中

 Source control

我只有选择

查看

我按照 Apple 的建议创建了存储库,但我无法提交我的代码。

如果我理解正确,如果我签出我的代码,它会保存到本地仓库中吗?

4

2 回答 2

1

如“如何在 iOS 7 中通过 Xcode 使用 Git 源代码控制”中所述,您可以:

  • 创建一个新项目:

http://cdn4.raywenderlich.com/wp-content/uploads/2013/09/Screen-Shot-2013-09-24-at-6.22.37-PM.png

  • 确保选择“创建 git 存储库”选项

http://cdn1.raywenderlich.com/wp-content/uploads/2013/09/Screen-Shot-2013-09-24-at-6.22.48-PM-480x54.png

  • 然后将您的源代码复制到该新存储库中。

对于该项目,您应该在“源代码管理”菜单中看到的不仅仅是“签出”:

http://cdn3.raywenderlich.com/wp-content/uploads/2013/09/Screen-Shot-2013-09-24-at-6.34.47-PM-e1380066015693.png

于 2013-11-14T07:22:05.987 回答
0

我刚刚找到一个帖子https://stackoverflow.com/a/11021627/411936解决了这个问题。我为我工作。希望能帮助到你。

1.  Quit Xcode (not sure if this is necessary but I do it just in case)
2.  Run Terminal
3.  Get into the project folder directory
4.  find .
5.  Find the file that says "UserInterfaceState.xcuserstate" and copy the entire filename up to the ./
6.  echo "paste the UserInterfaceState.xcuserstate file here" >.gitignore
7.  cat .gitignore
8.  git init
9.  git add .
10. git commit -m "You can type a comment here like now under source control"

您现在有一个存储库,并且您的项目处于源代码控制之下

于 2014-07-20T16:34:06.513 回答