我知道在这个主题上有一些问题,但它没有给我真正的答案。
我想使用 GIT 存储库来存储我的项目并创建一些分支。我在 xcode 4 中的其他项目上使用 GIT 存储库,但在 meni 下的 xcode 5 中
Source control
我只有选择
查看
我按照 Apple 的建议创建了存储库,但我无法提交我的代码。
如果我理解正确,如果我签出我的代码,它会保存到本地仓库中吗?
我知道在这个主题上有一些问题,但它没有给我真正的答案。
我想使用 GIT 存储库来存储我的项目并创建一些分支。我在 xcode 4 中的其他项目上使用 GIT 存储库,但在 meni 下的 xcode 5 中
Source control
我只有选择
查看
我按照 Apple 的建议创建了存储库,但我无法提交我的代码。
如果我理解正确,如果我签出我的代码,它会保存到本地仓库中吗?
如“如何在 iOS 7 中通过 Xcode 使用 Git 源代码控制”中所述,您可以:
对于该项目,您应该在“源代码管理”菜单中看到的不仅仅是“签出”:
我刚刚找到一个帖子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"
您现在有一个存储库,并且您的项目处于源代码控制之下