File tree Expand file tree Collapse file tree 4 files changed +43
-10
lines changed
Expand file tree Collapse file tree 4 files changed +43
-10
lines changed Original file line number Diff line number Diff line change 522522 "error" : -1
523523 }
524524 },
525+ "git_transport_certificate_check_cb" : {
526+ "args" : [
527+ {
528+ "name" : " cert" ,
529+ "cType" : " git_cert *"
530+ },
531+ {
532+ "name" : " valid" ,
533+ "cType" : " int"
534+ },
535+ {
536+ "name" : " host" ,
537+ "cType" : " const char *"
538+ },
539+ {
540+ "name" : " payload" ,
541+ "cType" : " void *"
542+ }
543+ ],
544+ "return" : {
545+ "type" : " int" ,
546+ "noResults" : 1 ,
547+ "success" : 0 ,
548+ "error" : -1
549+ }
550+ },
525551 "git_transport_message_cb" : {
526552 "args" : [
527553 {
Original file line number Diff line number Diff line change 214214 }
215215 }
216216 },
217+ "clone_options" : {
218+ "fields" : {
219+ "repository_cb" : {
220+ "ignore" : true
221+ },
222+ "repository_cb_payload" : {
223+ "ignore" : true
224+ },
225+ "remote_cb" : {
226+ "ignore" : true
227+ },
228+ "remote_cb_payload" : {
229+ "ignore" : true
230+ }
231+ }
232+ },
217233 "commit" : {
218234 "functions" : {
219235 "git_commit_create" : {
Original file line number Diff line number Diff line change 357357 " git_odb_object_type"
358358 ]
359359 ],
360- [
361- " merge_head" ,
362- [
363- " git_merge_head_free" ,
364- " git_merge_head_from_fetchhead" ,
365- " git_merge_head_from_id" ,
366- " git_merge_head_from_ref" ,
367- " git_merge_head_id"
368- ]
369- ],
370360 [
371361 " status_list" ,
372362 [
Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ module.exports = function generateNativeCode() {
108108 utils . writeFile ( "../lib/nodegit.js" , beautify ( templates . nodegitJS . render ( enabled ) ) ) ;
109109 // Write out all the classes.
110110 enabled . forEach ( function ( idef ) {
111+ if ( idef . filename == 'clone_options' ) debugger ;
111112 try {
112113 if ( idef . type && idef . type != "enum" ) {
113114 utils . writeFile (
You can’t perform that action at this time.
0 commit comments