我想构建一个包含一些基本 Git 功能的 iOS 应用程序。我基本上只需要 pull 、提交和推送功能。我是 iOS 开发的新手,所以我不知道有任何框架或库可以提供这些功能。我不确定 GitHub 是否有针对这些功能的 API,但这也足够了。
Best Answer-推荐答案 strong>
让我用 libgit2 回答这个老问题图书馆和他们的ObjectiveGit包装。
libgit2 is a portable, pure C implementation of the Git core methods provided as a re-entrant linkable library with a solid API, allowing you to write native speed custom Git applications in any language which supports C bindings.
ObjectiveGit 为 libgit2 库提供 Cocoa 绑定(bind)。甚至他们的许可证也允许您构建闭源软件。
关于ios - iOS 应用中的 Git 支持,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/10763636/
|