Skip to content

Commit 8f59843

Browse files
authored
Updated list of examples
1 parent 54a5bed commit 8f59843

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

Readme.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,19 @@ allowing you to write native speed custom Git applications in any language which
1010
* [WrapC](https://github.com/eiffel-wrap-c/WrapC) tool.
1111
* [Libgit2 v0.28.3](https://github.com/libgit2/libgit2/releases).
1212

13-
== Status ==
13+
### Status
1414
The binding is work in progress.
1515
Tested on Linux and Windows 64 bits.
1616

1717
## Examples
1818

19-
* Git Init: `shows how to initialize a new repo`
20-
* Git Status: `shows how to use the status APIs`
19+
* [Git Init](./examples/init): `shows how to initialize a new repo`
20+
* [Git Status](./examples/status): `shows how to use the status APIs`
21+
* [Git Add](./examples/add) `shows how to modify the index`
22+
* [Git Checkout](./examples/checkout) `shows how to perform checkouts`.
23+
* [Git Describe](./examples/describe) `shows how to describe commits`.
24+
* [Git ls-files](./examples/ls_files) `shows how to view all files currently in the index.`
25+
* [Git push](./examples/push) `shows how to git push <remote> <branch>`.
2126

2227
[Guide to linking libgit2](https://libgit2.org/docs/guides/build-and-link/) on various platforms
2328

@@ -28,6 +33,7 @@ On Linux to install version 0.28.3 you will need to do the following.
2833
$ cmake ..
2934
$ sudo cmake --build . --target install
3035

36+
3137
Optionally you can use [vckpg](https://github.com/Microsoft/vcpkg), a C++ Library Manager for Windows, Linux, and MacOS.
3238

3339
Windows example
@@ -48,3 +54,4 @@ Linux example
4854

4955

5056

57+

0 commit comments

Comments
 (0)