Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,17 @@ In Ubuntu:
sudo apt-get install libssl-dev
```

Additionally, you need `curl-config` on your system. You need one of these packages:
* libcurl4-gnutls-dev
* libcurl4-nss-dev
* libcurl4-openssl-dev
You will need the following libraries installed on your linux machine:
- libpcre
- libpcreposix
- libkrb5
- libk5crypto
- libcom_err

When building locally, you will also need development packages for kerberos and pcre, so both of these utilities must be present on your machine:
- pcre-config
- krb5-config


If you are still encountering problems while installing, you should try the
[Building from source](http://www.nodegit.org/guides/install/from-source/)
Expand Down
101 changes: 52 additions & 49 deletions generate/input/callbacks.json
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,25 @@
"error": -1
}
},
"git_indexer_progress_cb": {
"args": [
{
"name": "stats",
"cType": "const git_indexer_progress *"
},
{
"name": "payload",
"cType": "void *"
}
],
"return": {
"type": "int",
"noResults": 0,
"success": 0,
"error": -1,
"throttle": 100
}
},
"git_note_foreach_cb": {
"args": [
{
Expand Down Expand Up @@ -532,6 +551,28 @@
"error": -1
}
},
"git_push_update_reference_cb": {
"args": [
{
"name": "refname",
"cType": "const char *"
},
{
"name": "status",
"cType": "const char *"
},
{
"name": "data",
"cType": "void *"
}
],
"return": {
"type": "int",
"noResults": 1,
"success": 0,
"error": -1
}
},
"git_remote_create_cb": {
"args": [
{
Expand Down Expand Up @@ -692,29 +733,6 @@
"error": -1
}
},
"git_smart_subtransport_cb": {
"args": [
{
"name": "out",
"cType": "git_smart_subtransport **",
"isReturn": true
},
{
"name": "owner",
"cType": "git_transport*"
},
{
"name": "param",
"cType": "void *"
}
],
"return": {
"type": "int",
"noResults": 0,
"success": 0,
"error": -1
}
},
"git_stash_apply_progress_cb": {
"args": [
{
Expand Down Expand Up @@ -826,26 +844,7 @@
"error": -1
}
},
"git_transfer_progress_cb": {
"args": [
{
"name": "stats",
"cType": "const git_transfer_progress *"
},
{
"name": "payload",
"cType": "void *"
}
],
"return": {
"type": "int",
"noResults": 0,
"success": 0,
"error": -1,
"throttle": 100
}
},
"git_push_transfer_progress": {
"git_push_transfer_progress_cb": {
"args": [
{
"name": "current",
Expand Down Expand Up @@ -983,24 +982,28 @@
"error": -1
}
},
"git_push_update_reference_cb": {
"git_url_resolve_cb": {
"args": [
{
"name": "refname",
"cType": "const char *"
"name": "url_resolved",
"cType": "git_buf *"
},
{
"name": "status",
"name": "url",
"cType": "const char *"
},
{
"name": "data",
"name": "direction",
"cType": "int"
},
{
"name": "payload",
"cType": "void *"
}
],
"return": {
"type": "int",
"noResults": 1,
"noResults": -30,
"success": 0,
"error": -1
}
Expand Down
Loading