|
1 | 1 | # LibGit2Sharp
|
2 | 2 |
|
3 |
| -**LibGit2Sharp brings all the might and speed of [libgit2][0], a native Git implementation, to the managed world of .Net and Mono.** |
| 3 | +**LibGit2Sharp brings all the might and speed of [libgit2][libgit2], a native Git implementation, to the managed world of .Net and Mono.** |
4 | 4 |
|
5 |
| - [0]: http://libgit2.github.com/ |
| 5 | + [libgit2]: http://libgit2.github.com/ |
6 | 6 |
|
7 | 7 | ## Prerequisites
|
8 | 8 |
|
|
11 | 11 |
|
12 | 12 | ## Online resources
|
13 | 13 |
|
14 |
| - - [NuGet package][1] (Requires NuGet 2.7+) |
15 |
| - - [Source code][2] |
16 |
| - - [Continuous integration][3] |
| 14 | + - [NuGet package][nuget] (Requires NuGet 2.7+) |
| 15 | + - [Source code][source] |
17 | 16 |
|
18 |
| - [1]: http://nuget.org/List/Packages/LibGit2Sharp |
19 |
| - [2]: https://github.com/libgit2/libgit2sharp/ |
20 |
| - [3]: http://teamcity.codebetter.com/project.html?projectId=LibGit2Sharp&guest=1 |
| 17 | + [nuget]: http://nuget.org/List/Packages/LibGit2Sharp |
| 18 | + [source]: https://github.com/libgit2/libgit2sharp/ |
21 | 19 |
|
22 | 20 | ## Troubleshooting and support
|
23 | 21 |
|
24 |
| - - Usage or programming related question? Post it on [StackOverflow][4] using the tag *libgit2sharp* |
25 |
| - - Found a bug or missing a feature? Feed the [issue tracker][5] |
26 |
| - - Announcements and related miscellanea through Twitter ([@libgit2sharp][6]) |
| 22 | + - Usage or programming related question? Post it on [StackOverflow][so] using the tag *libgit2sharp* |
| 23 | + - Found a bug or missing a feature? Feed the [issue tracker][tracker] |
| 24 | + - Announcements and related miscellanea through Twitter ([@libgit2sharp][twitter]) |
27 | 25 |
|
28 |
| - [4]: http://stackoverflow.com/questions/tagged/libgit2sharp |
29 |
| - [5]: https://github.com/libgit2/libgit2sharp/issues |
30 |
| - [6]: http://twitter.com/libgit2sharp |
| 26 | + [so]: http://stackoverflow.com/questions/tagged/libgit2sharp |
| 27 | + [tracker]: https://github.com/libgit2/libgit2sharp/issues |
| 28 | + [twitter]: http://twitter.com/libgit2sharp |
31 | 29 |
|
32 | 30 | ## Current project build status
|
33 |
| -The [build][3] is generously hosted and run on the [CodeBetter TeamCity][7] infrastructure. |
34 |
| - |
35 |
| -| | Status of last build | |
36 |
| -| :------ | :------: | |
37 |
| -| **master** | [![master][8]][9] | |
38 | <
10000
/code> | -| **vNext (Win x86)** | [![vNext x86][10]][11] | |
39 |
| -| **vNext (Win amd64)** | [![vNext amd64][12]][13] | |
40 |
| -| **vNext (Mono)** | [![vNext Mono][14]][15] | |
41 |
| - |
42 |
| - [7]: http://codebetter.com/codebetter-ci/ |
43 |
| - [8]: http://teamcity.codebetter.com/app/rest/builds/buildType:(id:bt398)/statusIcon |
44 |
| - [9]: http://teamcity.codebetter.com/viewType.html?buildTypeId=bt398&guest=1 |
45 |
| - [10]: http://teamcity.codebetter.com/app/rest/builds/buildType:(id:bt651)/statusIcon |
46 |
| - [11]: http://teamcity.codebetter.com/viewType.html?buildTypeId=bt651&guest=1 |
47 |
| - [12]: http://teamcity.codebetter.com/app/rest/builds/buildType:(id:bt652)/statusIcon |
48 |
| - [13]: http://teamcity.codebetter.com/viewType.html?buildTypeId=bt652&guest=1 |
49 |
| - [14]: http://teamcity.codebetter.com/app/rest/builds/buildType:(id:bt656)/statusIcon |
50 |
| - [15]: http://teamcity.codebetter.com/viewType.html?buildTypeId=bt656&guest=1 |
| 31 | +The CI builds are generously hosted and run on the [Travis][travis] and [AppVeyor][appveyor] infrastructures. |
| 32 | + |
| 33 | +| | Windows (x86/amd64) | Linux/MacOsX | |
| 34 | +| :------ | :------: | :------: | |
| 35 | +| **master** | [![master win][master-win-badge]][master-win] | [![master nix][master-nix-badge]][master-nix] | |
| 36 | +| **vNext** | [![vNext win][vNext-win-badge]][vNext-win] | [![vNext nix][vNext-nix-badge]][vNext-nix] | |
| 37 | + |
| 38 | + |
| 39 | + [travis]: http://travis-ci.org/ |
| 40 | + [appveyor]: http://appveyor.com/ |
| 41 | + [master-win-badge]: https://ci.appveyor.com/api/projects/status/8qxcoqdo9kp7x2w9/branch/master?svg=true |
| 42 | + [master-win]: https://ci.appveyor.com/project/libgit2/libgit2sharp/branch/master |
| 43 | + [master-nix-badge]: https://travis-ci.org/libgit2/libgit2sharp.svg?branch=master |
| 44 | + [master-nix]: https://travis-ci.org/libgit2/libgit2sharp/branches |
| 45 | + [vNext-win-badge]: https://ci.appveyor.com/api/projects/status/8qxcoqdo9kp7x2w9/branch/vNext?svg=true |
| 46 | + [vNext-win]: https://ci.appveyor.com/project/libgit2/libgit2sharp/branch/vNext |
| 47 | + [vNext-nix-badge]: https://travis-ci.org/libgit2/libgit2sharp.svg?branch=vNext |
| 48 | + [vNext-nix]: https://travis-ci.org/libgit2/libgit2sharp/branches |
51 | 49 |
|
52 | 50 | ## Quick contributing guide
|
53 | 51 |
|
54 | 52 | - Fork and clone locally
|
55 | 53 | - Create a topic specific branch. Add some nice feature. Do not forget the tests ;-)
|
56 | 54 | - Send a Pull Request to spread the fun!
|
57 | 55 |
|
58 |
| -More thorough information available in the [wiki][16]. |
| 56 | +More thorough information available in the [wiki][wiki]. |
59 | 57 |
|
60 |
| - [16]: https://github.com/libgit2/libgit2sharp/wiki |
| 58 | + [wiki]: https://github.com/libgit2/libgit2sharp/wiki |
61 | 59 |
|
62 | 60 | ## Authors
|
63 | 61 |
|
64 |
| - - **Code:** The LibGit2Sharp [contributors][17] |
65 |
| - - **Logo:** [Jason "blackant" Long][18] |
| 62 | + - **Code:** The LibGit2Sharp [contributors][committers] |
| 63 | + - **Logo:** [Jason "blackant" Long][blackant] |
66 | 64 |
|
67 |
| - [17]: https://github.com/libgit2/libgit2sharp/contributors |
68 |
| - [18]: https://github.com/jasonlong |
| 65 | + [committers]: https://github.com/libgit2/libgit2sharp/contributors |
| 66 | + [blackant]: https://github.com/jasonlong |
69 | 67 |
|
70 | 68 | ## License
|
71 | 69 |
|
72 |
| -The MIT license (Refer to the [LICENSE.md][19] file) |
| 70 | +The MIT license (Refer to the [LICENSE.md][license] file) |
73 | 71 |
|
74 |
| - [19]: https://github.com/libgit2/libgit2sharp/blob/master/LICENSE.md |
| 72 | + [license]: https://github.com/libgit2/libgit2sharp/blob/master/LICENSE.md |
0 commit comments