Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3bdab95ce7c52d39ce32150f91d7e395a3b0851 (plain)
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
34
35
36
37
# LibGit2Sharp

LibGit2Sharp is an thin .Net layer (well.. we _try_ to keep it as thin as possible :-) ) wrapping the [libgit2](http://libgit2.github.com/) linkable C Git library.

It provides a very opiniated API which should be very easy to use and discover.

## Online resources

 - [NuGet package](http://nuget.org/List/Packages/LibGit2Sharp)
 - [Source code](https://github.com/libgit2/libgit2sharp/)
 - [Issue tracker](https://github.com/libgit2/libgit2sharp/issues)
 - [@libgit2sharp](http://twitter.com/libgit2sharp)

## Quick contributing guide

 - Fork and clone locally
 - Configure your repo to convert line endings on commit so they are always LF in the repo:
   - On Windows:
```
$ git config --global core.autocrlf true
```
   - On Linux:
```
$ git config --global core.autocrlf input
```
 - Create a topic specific branch. Add some nice feature. Do not forget the tests ;-)
 - Send a Pull Request to spread the fun!

More thorough information available in the [wiki](https://github.com/libgit2/libgit2sharp/wiki).

## Authors

The LibGit2Sharp [contributors](https://github.com/libgit2/libgit2sharp/contributors)

## License

The MIT license (Refer to the [LICENSE.md](https://github.com/libgit2/libgit2sharp/blob/master/LICENSE.md) file)