TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Ben Chatelain, Ben Chatelain.
Objective Git provides Objective-C bindings to the libgit2 linkable C Git library. It has been implemented as a framework right now. This is a good reference for setting up frameworks in xcode This library follows the rugged API as close as possible while trying to maintain a native objective-c feel.
Unit testing in being done using GHUnit. We are using both the mac and iOS unit testing frameworks. The one minor inconvenience to be aware of is that xcode doesn't like switching between the mac test target and the iOS test target. You generally have to close and reopen the project to move from iOS testing back to mac testing.
libgit2 is included as a submodule of Objective Git. After cloning Objective Git, chances are that you will want to also grab its submodules, e.g. as follows:
$ git submodule init
$ git submodule update
It is simple enough to add the ObjectiveGit framework to a desktop application project. An example of this is the CommitViewer example on GitHub. In summary:
#import <ObjectiveGit/ObjectiveGit.h>
as you would with any other framework.Inclusion of Objective Git in iOS projects is somewhat cumbersome on account of iOS not allowing third-party dynamic frameworks. A work-around for this is as follows:
libObjectiveGit-iOS.a
libraryFork libgit2/objective-git on GitHub, make it awesomer (preferably in a branch named for the topic), send a pull request.
All contributions should match GitHub's Objective-C coding conventions.
You can see all the amazing people contributing to this project here.
MIT. See LICENSE file.