Xcode4中这个Git是什么?
我刚刚安装了 XCode 4。 我在阅读过渡指南时遇到了一些新单词
Xcode4 中的 git 和 SCM 是什么意思? 这些有什么目的?
I Just Installed XCode 4.
I came across some new words while reading the transition guide
What is this git and SCM in Xcode4 mean?
What purpose does these serve?.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SCM 代表软件控制管理,git 就是此类软件的一个示例。
另一个例子是 Subversion (SVN),它可能(目前)更为人所知,并且也可以在 Xcode 中使用。
Git 的优点是分布式,这意味着您不需要另一台服务器或任何东西来启动版本控制。
来自 git 的小引用:
您可以查看 Apple 有关该主题的文字< /a>.
SCM stands for
software control management
, and git is a example of such software.Another example is Subversion (SVN), which is perhaps (for the moment) more known, and is also available in Xcode.
Git has the advantage to be distributed, which means you don't need to have another server or anything to start your versioning control.
A small quote from git:
You can see the Apple words on the subject.
git 和 scm 是管理项目版本的两个流行选项。 此苹果文档可帮助您了解他们..
Well git and scm are two popular options for Managing Versions of Your Project. This apple document helps you understand them..