forked from schacon/objective-git
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME
33 lines (23 loc) · 997 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Objective Git
===================
This is a implementation of Git in Objective-C, for embedding in Cocoa
and iPhone applications.
Initially, it is meant to provide basic read and write access to loose
and packed objects, and to provide an input stream handler that can negotiate
the server side of the git client/server protocol.
Dependencies
===================
The only strict requirement is an Objective-C 2.0 compiler. The code in 'src'
is compatible with both OS X (>= 10.5.x) and iPhone platforms. For convenience,
you can build an OS X framework in either Xcode or from the command line using [nuke][],
which is part of [Nu][]. The preliminary test suite is written in [Nu][], but
this may change in the future.
[Nu]: http://programming.nu
[nuke]: http://programming.nu/nuke
Credits
===================
A bit of this code is borrowed from the Git.git project and the NSData
compression stuff was borrowed from the Etoile framework.
Authors
===================
Scott Chacon