You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-14Lines changed: 8 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -1,28 +1,22 @@
1
1
# LibGit2Sharp
2
2
3
-
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.
4
-
5
-
It provides a very opiniated API which should be very easy to use and discover.
3
+
**LibGit2Sharp brings all the might and speed of [libgit2](http://libgit2.github.com/), a native Git implementation, to the managed world of .Net and Mono.**
- Usage or programming related question? Post it on [StackOverflow](http://stackoverflow.com/questions/tagged/libgit2sharp) using the tag *libgit2sharp*
14
+
- Found a bug or missing a feature? Feed the [issue tracker](https://github.com/libgit2/libgit2sharp/issues)
15
+
- Announcements and related miscellanea through Twitter ([@libgit2sharp](http://twitter.com/libgit2sharp))
13
16
14
17
## Quick contributing guide
15
18
16
19
- Fork and clone locally
17
-
- Configure your repo to convert line endings on commit so they are always LF in the repo:
18
-
- On Windows:
19
-
```
20
-
$ git config --global core.autocrlf true
21
-
```
22
-
- On Linux:
23
-
```
24
-
$ git config --global core.autocrlf input
25
-
```
26
20
- Create a topic specific branch. Add some nice feature. Do not forget the tests ;-)
0 commit comments