blob: 45c15f115f64d0da17c4fcbb169ffa595e9dff72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
|
libgit2.so.1.7 libgit2-1.7 #MINVER#
* Build-Depends-Package: libgit2-dev
git_annotated_commit_free@Base 1.7.0
git_annotated_commit_from_fetchhead@Base 1.7.0
git_annotated_commit_from_ref@Base 1.7.0
git_annotated_commit_from_revspec@Base 1.7.0
git_annotated_commit_id@Base 1.7.0
git_annotated_commit_lookup@Base 1.7.0
git_annotated_commit_ref@Base 1.7.0
git_apply@Base 1.7.0
git_apply_options_init@Base 1.7.0
git_apply_to_tree@Base 1.7.0
git_attr_add_macro@Base 1.7.0
git_attr_cache_flush@Base 1.7.0
git_attr_foreach@Base 1.7.0
git_attr_foreach_ext@Base 1.7.0
git_attr_get@Base 1.7.0
git_attr_get_ext@Base 1.7.0
git_attr_get_many@Base 1.7.0
git_attr_get_many_ext@Base 1.7.0
git_attr_value@Base 1.7.0
git_blame_buffer@Base 1.7.0
git_blame_file@Base 1.7.0
git_blame_free@Base 1.7.0
git_blame_get_hunk_byindex@Base 1.7.0
git_blame_get_hunk_byline@Base 1.7.0
git_blame_get_hunk_count@Base 1.7.0
git_blame_init_options@Base 1.7.0
git_blame_options_init@Base 1.7.0
git_blob_create_from_buffer@Base 1.7.0
git_blob_create_from_disk@Base 1.7.0
git_blob_create_from_stream@Base 1.7.0
git_blob_create_from_stream_commit@Base 1.7.0
git_blob_create_from_workdir@Base 1.7.0
git_blob_create_frombuffer@Base 1.7.0
git_blob_create_fromdisk@Base 1.7.0
git_blob_create_fromstream@Base 1.7.0
git_blob_create_fromstream_commit@Base 1.7.0
git_blob_create_fromworkdir@Base 1.7.0
git_blob_data_is_binary@Base 1.7.0
git_blob_dup@Base 1.7.0
git_blob_filter@Base 1.7.0
git_blob_filter_options_init@Base 1.7.0
git_blob_filtered_content@Base 1.7.0
git_blob_free@Base 1.7.0
git_blob_id@Base 1.7.0
git_blob_is_binary@Base 1.7.0
git_blob_lookup@Base 1.7.0
git_blob_lookup_prefix@Base 1.7.0
git_blob_owner@Base 1.7.0
git_blob_rawcontent@Base 1.7.0
git_blob_rawsize@Base 1.7.0
git_branch_create@Base 1.7.0
git_branch_create_from_annotated@Base 1.7.0
git_branch_delete@Base 1.7.0
git_branch_is_checked_out@Base 1.7.0
git_branch_is_head@Base 1.7.0
git_branch_iterator_free@Base 1.7.0
git_branch_iterator_new@Base 1.7.0
git_branch_lookup@Base 1.7.0
git_branch_move@Base 1.7.0
git_branch_name@Base 1.7.0
git_branch_name_is_valid@Base 1.7.0
git_branch_next@Base 1.7.0
git_branch_remote_name@Base 1.7.0
git_branch_set_upstream@Base 1.7.0
git_branch_upstream@Base 1.7.0
git_branch_upstream_merge@Base 1.7.0
git_branch_upstream_name@Base 1.7.0
git_branch_upstream_remote@Base 1.7.0
git_buf_contains_nul@Base 1.7.0
git_buf_dispose@Base 1.7.0
git_buf_free@Base 1.7.0
git_buf_grow@Base 1.7.0
git_buf_is_binary@Base 1.7.0
git_buf_set@Base 1.7.0
git_checkout_head@Base 1.7.0
git_checkout_index@Base 1.7.0
git_checkout_init_options@Base 1.7.0
git_checkout_options_init@Base 1.7.0
git_checkout_tree@Base 1.7.0
git_cherrypick@Base 1.7.0
git_cherrypick_commit@Base 1.7.0
git_cherrypick_init_options@Base 1.7.0
git_cherrypick_options_init@Base 1.7.0
git_clone@Base 1.7.0
git_clone_init_options@Base 1.7.0
git_clone_options_init@Base 1.7.0
git_commit_amend@Base 1.7.0
git_commit_author@Base 1.7.0
git_commit_author_with_mailmap@Base 1.7.0
git_commit_body@Base 1.7.0
git_commit_committer@Base 1.7.0
git_commit_committer_with_mailmap@Base 1.7.0
git_commit_create@Base 1.7.0
git_commit_create_buffer@Base 1.7.0
git_commit_create_from_callback@Base 1.7.0
git_commit_create_from_ids@Base 1.7.0
git_commit_create_v@Base 1.7.0
git_commit_create_with_signature@Base 1.7.0
git_commit_dup@Base 1.7.0
git_commit_extract_signature@Base 1.7.0
git_commit_free@Base 1.7.0
git_commit_graph_free@Base 1.7.0
git_commit_graph_open@Base 1.7.0
git_commit_graph_writer_add_index_file@Base 1.7.0
git_commit_graph_writer_add_revwalk@Base 1.7.0
git_commit_graph_writer_commit@Base 1.7.0
git_commit_graph_writer_dump@Base 1.7.0
git_commit_graph_writer_free@Base 1.7.0
git_commit_graph_writer_new@Base 1.7.0
git_commit_graph_writer_options_init@Base 1.7.0
git_commit_header_field@Base 1.7.0
git_commit_id@Base 1.7.0
git_commit_lookup@Base 1.7.0
git_commit_lookup_prefix@Base 1.7.0
git_commit_message@Base 1.7.0
git_commit_message_encoding@Base 1.7.0
git_commit_message_raw@Base 1.7.0
git_commit_nth_gen_ancestor@Base 1.7.0
git_commit_owner@Base 1.7.0
git_commit_parent@Base 1.7.0
git_commit_parent_id@Base 1.7.0
git_commit_parentcount@Base 1.7.0
git_commit_raw_header@Base 1.7.0
git_commit_summary@Base 1.7.0
git_commit_time@Base 1.7.0
git_commit_time_offset@Base 1.7.0
git_commit_tree@Base 1.7.0
git_commit_tree_id@Base 1.7.0
git_config_add_backend@Base 1.7.0
git_config_add_file_ondisk@Base 1.7.0
git_config_backend_foreach_match@Base 1.7.0
git_config_delete_entry@Base 1.7.0
git_config_delete_multivar@Base 1.7.0
git_config_entry_free@Base 1.7.0
git_config_find_global@Base 1.7.0
git_config_find_programdata@Base 1.7.0
git_config_find_system@Base 1.7.0
git_config_find_xdg@Base 1.7.0
git_config_foreach@Base 1.7.0
git_config_foreach_match@Base 1.7.0
git_config_free@Base 1.7.0
git_config_get_bool@Base 1.7.0
git_config_get_entry@Base 1.7.0
git_config_get_int32@Base 1.7.0
git_config_get_int64@Base 1.7.0
git_config_get_mapped@Base 1.7.0
git_config_get_multivar_foreach@Base 1.7.0
git_config_get_path@Base 1.7.0
git_config_get_string@Base 1.7.0
git_config_get_string_buf@Base 1.7.0
git_config_init_backend@Base 1.7.0
git_config_iterator_free@Base 1.7.0
git_config_iterator_glob_new@Base 1.7.0
git_config_iterator_new@Base 1.7.0
git_config_lock@Base 1.7.0
git_config_lookup_map_value@Base 1.7.0
git_config_multivar_iterator_new@Base 1.7.0
git_config_new@Base 1.7.0
git_config_next@Base 1.7.0
git_config_open_default@Base 1.7.0
git_config_open_global@Base 1.7.0
git_config_open_level@Base 1.7.0
git_config_open_ondisk@Base 1.7.0
git_config_parse_bool@Base 1.7.0
git_config_parse_int32@Base 1.7.0
git_config_parse_int64@Base 1.7.0
git_config_parse_path@Base 1.7.0
git_config_set_bool@Base 1.7.0
git_config_set_int32@Base 1.7.0
git_config_set_int64@Base 1.7.0
git_config_set_multivar@Base 1.7.0
git_config_set_string@Base 1.7.0
git_config_snapshot@Base 1.7.0
git_config_unlock@Base 1.7.0
git_cred_default_new@Base 1.7.0
git_cred_free@Base 1.7.0
git_cred_get_username@Base 1.7.0
git_cred_has_username@Base 1.7.0
git_cred_ssh_custom_new@Base 1.7.0
git_cred_ssh_interactive_new@Base 1.7.0
git_cred_ssh_key_from_agent@Base 1.7.0
git_cred_ssh_key_memory_new@Base 1.7.0
git_cred_ssh_key_new@Base 1.7.0
git_cred_username_new@Base 1.7.0
git_cred_userpass@Base 1.7.0
git_cred_userpass_plaintext_new@Base 1.7.0
git_credential_default_new@Base 1.7.0
git_credential_free@Base 1.7.0
git_credential_get_username@Base 1.7.0
git_credential_has_username@Base 1.7.0
git_credential_ssh_custom_new@Base 1.7.0
git_credential_ssh_interactive_new@Base 1.7.0
git_credential_ssh_key_from_agent@Base 1.7.0
git_credential_ssh_key_memory_new@Base 1.7.0
git_credential_ssh_key_new@Base 1.7.0
git_credential_username_new@Base 1.7.0
git_credential_userpass@Base 1.7.0
git_credential_userpass_plaintext_new@Base 1.7.0
git_describe_commit@Base 1.7.0
git_describe_format@Base 1.7.0
git_describe_format_options_init@Base 1.7.0
git_describe_init_format_options@Base 1.7.0
git_describe_init_options@Base 1.7.0
git_describe_options_init@Base 1.7.0
git_describe_result_free@Base 1.7.0
git_describe_workdir@Base 1.7.0
git_diff_blob_to_buffer@Base 1.7.0
git_diff_blobs@Base 1.7.0
git_diff_buffers@Base 1.7.0
git_diff_commit_as_email@Base 1.7.0
git_diff_find_init_options@Base 1.7.0
git_diff_find_options_init@Base 1.7.0
git_diff_find_similar@Base 1.7.0
git_diff_foreach@Base 1.7.0
git_diff_format_email@Base 1.7.0
git_diff_format_email_init_options@Base 1.7.0
git_diff_format_email_options_init@Base 1.7.0
git_diff_free@Base 1.7.0
git_diff_from_buffer@Base 1.7.0
git_diff_get_delta@Base 1.7.0
git_diff_get_perfdata@Base 1.7.0
git_diff_get_stats@Base 1.7.0
git_diff_index_to_index@Base 1.7.0
git_diff_index_to_workdir@Base 1.7.0
git_diff_init_options@Base 1.7.0
git_diff_is_sorted_icase@Base 1.7.0
git_diff_merge@Base 1.7.0
git_diff_num_deltas@Base 1.7.0
git_diff_num_deltas_of_type@Base 1.7.0
git_diff_options_init@Base 1.7.0
git_diff_patchid@Base 1.7.0
git_diff_patchid_options_init@Base 1.7.0
git_diff_print@Base 1.7.0
git_diff_print_callback__to_buf@Base 1.7.0
git_diff_print_callback__to_file_handle@Base 1.7.0
git_diff_stats_deletions@Base 1.7.0
git_diff_stats_files_changed@Base 1.7.0
git_diff_stats_free@Base 1.7.0
git_diff_stats_insertions@Base 1.7.0
git_diff_stats_to_buf@Base 1.7.0
git_diff_status_char@Base 1.7.0
git_diff_to_buf@Base 1.7.0
git_diff_tree_to_index@Base 1.7.0
git_diff_tree_to_tree@Base 1.7.0
git_diff_tree_to_workdir@Base 1.7.0
git_diff_tree_to_workdir_with_index@Base 1.7.0
git_email_create_from_commit@Base 1.7.0
git_email_create_from_diff@Base 1.7.0
git_error_clear@Base 1.7.0
git_error_last@Base 1.7.0
git_error_set@Base 1.7.0
git_error_set_oom@Base 1.7.0
git_error_set_str@Base 1.7.0
git_fetch_init_options@Base 1.7.0
git_fetch_options_init@Base 1.7.0
git_filter_init@Base 1.7.0
git_filter_list_apply_to_blob@Base 1.7.0
git_filter_list_apply_to_buffer@Base 1.7.0
git_filter_list_apply_to_data@Base 1.7.0
git_filter_list_apply_to_file@Base 1.7.0
git_filter_list_contains@Base 1.7.0
git_filter_list_free@Base 1.7.0
git_filter_list_length@Base 1.7.0
git_filter_list_load@Base 1.7.0
git_filter_list_load_ext@Base 1.7.0
git_filter_list_new@Base 1.7.0
git_filter_list_push@Base 1.7.0
git_filter_list_stream_blob@Base 1.7.0
git_filter_list_stream_buffer@Base 1.7.0
git_filter_list_stream_data@Base 1.7.0
git_filter_list_stream_file@Base 1.7.0
git_filter_lookup@Base 1.7.0
git_filter_register@Base 1.7.0
git_filter_source_filemode@Base 1.7.0
git_filter_source_flags@Base 1.7.0
git_filter_source_id@Base 1.7.0
git_filter_source_mode@Base 1.7.0
git_filter_source_path@Base 1.7.0
git_filter_source_repo@Base 1.7.0
git_filter_unregister@Base 1.7.0
git_graph_ahead_behind@Base 1.7.0
git_graph_descendant_of@Base 1.7.0
git_graph_reachable_from_any@Base 1.7.0
git_hashsig_compare@Base 1.7.0
git_hashsig_create@Base 1.7.0
git_hashsig_create_fromfile@Base 1.7.0
git_hashsig_free@Base 1.7.0
git_ignore_add_rule@Base 1.7.0
git_ignore_clear_internal_rules@Base 1.7.0
git_ignore_path_is_ignored@Base 1.7.0
git_index_add@Base 1.7.0
git_index_add_all@Base 1.7.0
git_index_add_bypath@Base 1.7.0
git_index_add_from_buffer@Base 1.7.0
git_index_add_frombuffer@Base 1.7.0
git_index_caps@Base 1.7.0
git_index_checksum@Base 1.7.0
git_index_clear@Base 1.7.0
git_index_conflict_add@Base 1.7.0
git_index_conflict_cleanup@Base 1.7.0
git_index_conflict_get@Base 1.7.0
git_index_conflict_iterator_free@Base 1.7.0
git_index_conflict_iterator_new@Base 1.7.0
git_index_conflict_next@Base 1.7.0
git_index_conflict_remove@Base 1.7.0
git_index_entry_is_conflict@Base 1.7.0
git_index_entry_stage@Base 1.7.0
git_index_entrycount@Base 1.7.0
git_index_find@Base 1.7.0
git_index_find_prefix@Base 1.7.0
git_index_free@Base 1.7.0
git_index_get_byindex@Base 1.7.0
git_index_get_bypath@Base 1.7.0
git_index_has_conflicts@Base 1.7.0
git_index_iterator_free@Base 1.7.0
git_index_iterator_new@Base 1.7.0
git_index_iterator_next@Base 1.7.0
git_index_name_add@Base 1.7.0
git_index_name_clear@Base 1.7.0
git_index_name_entrycount@Base 1.7.0
git_index_name_get_byindex@Base 1.7.0
git_index_new@Base 1.7.0
git_index_open@Base 1.7.0
git_index_owner@Base 1.7.0
git_index_path@Base 1.7.0
git_index_read@Base 1.7.0
git_index_read_tree@Base 1.7.0
git_index_remove@Base 1.7.0
git_index_remove_all@Base 1.7.0
git_index_remove_bypath@Base 1.7.0
git_index_remove_directory@Base 1.7.0
git_index_reuc_add@Base 1.7.0
git_index_reuc_clear@Base 1.7.0
git_index_reuc_entrycount@Base 1.7.0
git_index_reuc_find@Base 1.7.0
git_index_reuc_get_byindex@Base 1.7.0
git_index_reuc_get_bypath@Base 1.7.0
git_index_reuc_remove@Base 1.7.0
git_index_set_caps@Base 1.7.0
git_index_set_version@Base 1.7.0
git_index_update_all@Base 1.7.0
git_index_version@Base 1.7.0
git_index_write@Base 1.7.0
git_index_write_tree@Base 1.7.0
git_index_write_tree_to@Base 1.7.0
git_indexer_append@Base 1.7.0
git_indexer_commit@Base 1.7.0
git_indexer_free@Base 1.7.0
git_indexer_hash@Base 1.7.0
git_indexer_init_options@Base 1.7.0
git_indexer_name@Base 1.7.0
git_indexer_new@Base 1.7.0
git_indexer_options_init@Base 1.7.0
git_libgit2_features@Base 1.7.0
git_libgit2_init@Base 1.7.0
git_libgit2_opts@Base 1.7.0
git_libgit2_prerelease@Base 1.7.0
git_libgit2_shutdown@Base 1.7.0
git_libgit2_version@Base 1.7.0
git_mailmap_add_entry@Base 1.7.0
git_mailmap_free@Base 1.7.0
git_mailmap_from_buffer@Base 1.7.0
git_mailmap_from_repository@Base 1.7.0
git_mailmap_new@Base 1.7.0
git_mailmap_resolve@Base 1.7.0
git_mailmap_resolve_signature@Base 1.7.0
git_mempack_dump@Base 1.7.0
git_mempack_new@Base 1.7.0
git_mempack_reset@Base 1.7.0
git_merge@Base 1.7.0
git_merge_analysis@Base 1.7.0
git_merge_analysis_for_ref@Base 1.7.0
git_merge_base@Base 1.7.0
git_merge_base_many@Base 1.7.0
git_merge_base_octopus@Base 1.7.0
git_merge_bases@Base 1.7.0
git_merge_bases_many@Base 1.7.0
git_merge_commits@Base 1.7.0
git_merge_driver_lookup@Base 1.7.0
git_merge_driver_register@Base 1.7.0
git_merge_driver_source_ancestor@Base 1.7.0
git_merge_driver_source_file_options@Base 1.7.0
git_merge_driver_source_ours@Base 1.7.0
git_merge_driver_source_repo@Base 1.7.0
git_merge_driver_source_theirs@Base 1.7.0
git_merge_driver_unregister@Base 1.7.0
git_merge_file@Base 1.7.0
git_merge_file_from_index@Base 1.7.0
git_merge_file_init_input@Base 1.7.0
git_merge_file_init_options@Base 1.7.0
git_merge_file_input_init@Base 1.7.0
git_merge_file_options_init@Base 1.7.0
git_merge_file_result_free@Base 1.7.0
git_merge_init_options@Base 1.7.0
git_merge_options_init@Base 1.7.0
git_merge_trees@Base 1.7.0
git_message_prettify@Base 1.7.0
git_message_trailer_array_free@Base 1.7.0
git_message_trailers@Base 1.7.0
git_midx_writer_add@Base 1.7.0
git_midx_writer_commit@Base 1.7.0
git_midx_writer_dump@Base 1.7.0
git_midx_writer_free@Base 1.7.0
git_midx_writer_new@Base 1.7.0
git_note_author@Base 1.7.0
git_note_commit_create@Base 1.7.0
git_note_commit_iterator_new@Base 1.7.0
git_note_commit_read@Base 1.7.0
git_note_commit_remove@Base 1.7.0
git_note_committer@Base 1.7.0
git_note_create@Base 1.7.0
git_note_default_ref@Base 1.7.0
git_note_foreach@Base 1.7.0
git_note_free@Base 1.7.0
git_note_id@Base 1.7.0
git_note_iterator_free@Base 1.7.0
git_note_iterator_new@Base 1.7.0
git_note_message@Base 1.7.0
git_note_next@Base 1.7.0
git_note_read@Base 1.7.0
git_note_remove@Base 1.7.0
git_object__size@Base 1.7.0
git_object_dup@Base 1.7.0
git_object_free@Base 1.7.0
git_object_id@Base 1.7.0
git_object_lookup@Base 1.7.0
git_object_lookup_bypath@Base 1.7.0
git_object_lookup_prefix@Base 1.7.0
git_object_owner@Base 1.7.0
git_object_peel@Base 1.7.0
git_object_rawcontent_is_valid@Base 1.7.0
git_object_short_id@Base 1.7.0
git_object_string2type@Base 1.7.0
git_object_type2string@Base 1.7.0
git_object_type@Base 1.7.0
git_object_typeisloose@Base 1.7.0
git_odb__backend_loose@Base 1.7.0
git_odb_add_alternate@Base 1.7.0
git_odb_add_backend@Base 1.7.0
git_odb_add_disk_alternate@Base 1.7.0
git_odb_backend_data_alloc@Base 1.7.0
git_odb_backend_data_free@Base 1.7.0
git_odb_backend_loose@Base 1.7.0
git_odb_backend_malloc@Base 1.7.0
git_odb_backend_one_pack@Base 1.7.0
git_odb_backend_pack@Base 1.7.0
git_odb_exists@Base 1.7.0
git_odb_exists_ext@Base 1.7.0
git_odb_exists_prefix@Base 1.7.0
git_odb_expand_ids@Base 1.7.0
git_odb_foreach@Base 1.7.0
git_odb_free@Base 1.7.0
git_odb_get_backend@Base 1.7.0
git_odb_hash@Base 1.7.0
git_odb_hashfile@Base 1.7.0
git_odb_init_backend@Base 1.7.0
git_odb_new@Base 1.7.0
git_odb_num_backends@Base 1.7.0
git_odb_object_data@Base 1.7.0
git_odb_object_dup@Base 1.7.0
git_odb_object_free@Base 1.7.0
git_odb_object_id@Base 1.7.0
git_odb_object_size@Base 1.7.0
git_odb_object_type@Base 1.7.0
git_odb_open@Base 1.7.0
git_odb_open_rstream@Base 1.7.0
git_odb_open_wstream@Base 1.7.0
git_odb_read@Base 1.7.0
git_odb_read_header@Base 1.7.0
git_odb_read_prefix@Base 1.7.0
git_odb_refresh@Base 1.7.0
git_odb_set_commit_graph@Base 1.7.0
git_odb_stream_finalize_write@Base 1.7.0
git_odb_stream_free@Base 1.7.0
git_odb_stream_read@Base 1.7.0
git_odb_stream_write@Base 1.7.0
git_odb_write@Base 1.7.0
git_odb_write_multi_pack_index@Base 1.7.0
git_odb_write_pack@Base 1.7.0
git_oid_cmp@Base 1.7.0
git_oid_cpy@Base 1.7.0
git_oid_equal@Base 1.7.0
git_oid_fmt@Base 1.7.0
git_oid_fromraw@Base 1.7.0
git_oid_fromstr@Base 1.7.0
git_oid_fromstrn@Base 1.7.0
git_oid_fromstrp@Base 1.7.0
git_oid_is_zero@Base 1.7.0
git_oid_iszero@Base 1.7.0
git_oid_ncmp@Base 1.7.0
git_oid_nfmt@Base 1.7.0
git_oid_pathfmt@Base 1.7.0
git_oid_shorten_add@Base 1.7.0
git_oid_shorten_free@Base 1.7.0
git_oid_shorten_new@Base 1.7.0
git_oid_strcmp@Base 1.7.0
git_oid_streq@Base 1.7.0
git_oid_tostr@Base 1.7.0
git_oid_tostr_s@Base 1.7.0
git_oidarray_dispose@Base 1.7.0
git_oidarray_free@Base 1.7.0
git_openssl_set_locking@Base 1.7.0
git_packbuilder_foreach@Base 1.7.0
git_packbuilder_free@Base 1.7.0
git_packbuilder_hash@Base 1.7.0
git_packbuilder_insert@Base 1.7.0
git_packbuilder_insert_commit@Base 1.7.0
git_packbuilder_insert_recur@Base 1.7.0
git_packbuilder_insert_tree@Base 1.7.0
git_packbuilder_insert_walk@Base 1.7.0
git_packbuilder_name@Base 1.7.0
git_packbuilder_new@Base 1.7.0
git_packbuilder_object_count@Base 1.7.0
git_packbuilder_set_callbacks@Base 1.7.0
git_packbuilder_set_threads@Base 1.7.0
git_packbuilder_write@Base 1.7.0
git_packbuilder_write_buf@Base 1.7.0
git_packbuilder_written@Base 1.7.0
git_patch_free@Base 1.7.0
git_patch_from_blob_and_buffer@Base 1.7.0
git_patch_from_blobs@Base 1.7.0
git_patch_from_buffers@Base 1.7.0
git_patch_from_diff@Base 1.7.0
git_patch_get_delta@Base 1.7.0
git_patch_get_hunk@Base 1.7.0
git_patch_get_line_in_hunk@Base 1.7.0
git_patch_line_stats@Base 1.7.0
git_patch_num_hunks@Base 1.7.0
git_patch_num_lines_in_hunk@Base 1.7.0
git_patch_owner@Base 1.7.0
git_patch_print@Base 1.7.0
git_patch_size@Base 1.7.0
git_patch_to_buf@Base 1.7.0
git_path_is_gitfile@Base 1.7.0
git_pathspec_free@Base 1.7.0
git_pathspec_match_diff@Base 1.7.0
git_pathspec_match_index@Base 1.7.0
git_pathspec_match_list_diff_entry@Base 1.7.0
git_pathspec_match_list_entry@Base 1.7.0
git_pathspec_match_list_entrycount@Base 1.7.0
git_pathspec_match_list_failed_entry@Base 1.7.0
git_pathspec_match_list_failed_entrycount@Base 1.7.0
git_pathspec_match_list_free@Base 1.7.0
git_pathspec_match_tree@Base 1.7.0
git_pathspec_match_workdir@Base 1.7.0
git_pathspec_matches_path@Base 1.7.0
git_pathspec_new@Base 1.7.0
git_proxy_init_options@Base 1.7.0
git_proxy_options_init@Base 1.7.0
git_push_init_options@Base 1.7.0
git_push_options_init@Base 1.7.0
git_rebase_abort@Base 1.7.0
git_rebase_commit@Base 1.7.0
git_rebase_finish@Base 1.7.0
git_rebase_free@Base 1.7.0
git_rebase_init@Base 1.7.0
git_rebase_init_options@Base 1.7.0
git_rebase_inmemory_index@Base 1.7.0
git_rebase_next@Base 1.7.0
git_rebase_onto_id@Base 1.7.0
git_rebase_onto_name@Base 1.7.0
git_rebase_open@Base 1.7.0
git_rebase_operation_byindex@Base 1.7.0
git_rebase_operation_current@Base 1.7.0
git_rebase_operation_entrycount@Base 1.7.0
git_rebase_options_init@Base 1.7.0
git_rebase_orig_head_id@Base 1.7.0
git_rebase_orig_head_name@Base 1.7.0
git_refdb_backend_fs@Base 1.7.0
git_refdb_compress@Base 1.7.0
git_refdb_free@Base 1.7.0
git_refdb_init_backend@Base 1.7.0
git_refdb_new@Base 1.7.0
git_refdb_open@Base 1.7.0
git_refdb_set_backend@Base 1.7.0
git_reference__alloc@Base 1.7.0
git_reference__alloc_symbolic@Base 1.7.0
git_reference_cmp@Base 1.7.0
git_reference_create@Base 1.7.0
git_reference_create_matching@Base 1.7.0
git_reference_delete@Base 1.7.0
git_reference_dup@Base 1.7.0
git_reference_dwim@Base 1.7.0
git_reference_ensure_log@Base 1.7.0
git_reference_foreach@Base 1.7.0
git_reference_foreach_glob@Base 1.7.0
git_reference_foreach_name@Base 1.7.0
git_reference_free@Base 1.7.0
git_reference_has_log@Base 1.7.0
git_reference_is_branch@Base 1.7.0
git_reference_is_note@Base 1.7.0
git_reference_is_remote@Base 1.7.0
git_reference_is_tag@Base 1.7.0
git_reference_is_valid_name@Base 1.7.0
git_reference_iterator_free@Base 1.7.0
git_reference_iterator_glob_new@Base 1.7.0
git_reference_iterator_new@Base 1.7.0
git_reference_list@Base 1.7.0
git_reference_lookup@Base 1.7.0
git_reference_name@Base 1.7.0
git_reference_name_is_valid@Base 1.7.0
git_reference_name_to_id@Base 1.7.0
git_reference_next@Base 1.7.0
git_reference_next_name@Base 1.7.0
git_reference_normalize_name@Base 1.7.0
git_reference_owner@Base 1.7.0
git_reference_peel@Base 1.7.0
git_reference_remove@Base 1.7.0
git_reference_rename@Base 1.7.0
git_reference_resolve@Base 1.7.0
git_reference_set_target@Base 1.7.0
git_reference_shorthand@Base 1.7.0
git_reference_symbolic_create@Base 1.7.0
git_reference_symbolic_create_matching@Base 1.7.0
git_reference_symbolic_set_target@Base 1.7.0
git_reference_symbolic_target@Base 1.7.0
git_reference_target@Base 1.7.0
git_reference_target_peel@Base 1.7.0
git_reference_type@Base 1.7.0
git_reflog_append@Base 1.7.0
git_reflog_delete@Base 1.7.0
git_reflog_drop@Base 1.7.0
git_reflog_entry__free@Base 1.7.0
git_reflog_entry_byindex@Base 1.7.0
git_reflog_entry_committer@Base 1.7.0
git_reflog_entry_id_new@Base 1.7.0
git_reflog_entry_id_old@Base 1.7.0
git_reflog_entry_message@Base 1.7.0
git_reflog_entrycount@Base 1.7.0
git_reflog_free@Base 1.7.0
git_reflog_read@Base 1.7.0
git_reflog_rename@Base 1.7.0
git_reflog_write@Base 1.7.0
git_refspec_direction@Base 1.7.0
git_refspec_dst@Base 1.7.0
git_refspec_dst_matches@Base 1.7.0
git_refspec_force@Base 1.7.0
git_refspec_free@Base 1.7.0
git_refspec_parse@Base 1.7.0
git_refspec_rtransform@Base 1.7.0
git_refspec_src@Base 1.7.0
git_refspec_src_matches@Base 1.7.0
git_refspec_string@Base 1.7.0
git_refspec_transform@Base 1.7.0
git_remote_add_fetch@Base 1.7.0
git_remote_add_push@Base 1.7.0
git_remote_autotag@Base 1.7.0
git_remote_connect@Base 1.7.0
git_remote_connect_ext@Base 1.7.0
git_remote_connect_options_dispose@Base 1.7.0
git_remote_connect_options_init@Base 1.7.0
git_remote_connected@Base 1.7.0
git_remote_create@Base 1.7.0
git_remote_create_anonymous@Base 1.7.0
git_remote_create_detached@Base 1.7.0
git_remote_create_init_options@Base 1.7.0
git_remote_create_options_init@Base 1.7.0
git_remote_create_with_fetchspec@Base 1.7.0
git_remote_create_with_opts@Base 1.7.0
git_remote_default_branch@Base 1.7.0
git_remote_delete@Base 1.7.0
git_remote_disconnect@Base 1.7.0
git_remote_download@Base 1.7.0
git_remote_dup@Base 1.7.0
git_remote_fetch@Base 1.7.0
git_remote_free@Base 1.7.0
git_remote_get_fetch_refspecs@Base 1.7.0
git_remote_get_push_refspecs@Base 1.7.0
git_remote_get_refspec@Base 1.7.0
git_remote_init_callbacks@Base 1.7.0
git_remote_is_valid_name@Base 1.7.0
git_remote_list@Base 1.7.0
git_remote_lookup@Base 1.7.0
git_remote_ls@Base 1.7.0
git_remote_name@Base 1.7.0
git_remote_name_is_valid@Base 1.7.0
git_remote_owner@Base 1.7.0
git_remote_prune@Base 1.7.0
git_remote_prune_refs@Base 1.7.0
git_remote_push@Base 1.7.0
git_remote_pushurl@Base 1.7.0
git_remote_refspec_count@Base 1.7.0
git_remote_rename@Base 1.7.0
git_remote_set_autotag@Base 1.7.0
git_remote_set_instance_pushurl@Base 1.7.0
git_remote_set_instance_url@Base 1.7.0
git_remote_set_pushurl@Base 1.7.0
git_remote_set_url@Base 1.7.0
git_remote_stats@Base 1.7.0
git_remote_stop@Base 1.7.0
git_remote_update_tips@Base 1.7.0
git_remote_upload@Base 1.7.0
git_remote_url@Base 1.7.0
git_repository__cleanup@Base 1.7.0
git_repository_commondir@Base 1.7.0
git_repository_config@Base 1.7.0
git_repository_config_snapshot@Base 1.7.0
git_repository_detach_head@Base 1.7.0
git_repository_discover@Base 1.7.0
git_repository_fetchhead_foreach@Base 1.7.0
git_repository_free@Base 1.7.0
git_repository_get_namespace@Base 1.7.0
git_repository_hashfile@Base 1.7.0
git_repository_head@Base 1.7.0
git_repository_head_detached@Base 1.7.0
git_repository_head_detached_for_worktree@Base 1.7.0
git_repository_head_for_worktree@Base 1.7.0
git_repository_head_unborn@Base 1.7.0
git_repository_ident@Base 1.7.0
git_repository_index@Base 1.7.0
git_repository_init@Base 1.7.0
git_repository_init_ext@Base 1.7.0
git_repository_init_init_options@Base 1.7.0
git_repository_init_options_init@Base 1.7.0
git_repository_is_bare@Base 1.7.0
git_repository_is_empty@Base 1.7.0
git_repository_is_shallow@Base 1.7.0
git_repository_is_worktree@Base 1.7.0
git_repository_item_path@Base 1.7.0
git_repository_mergehead_foreach@Base 1.7.0
git_repository_message@Base 1.7.0
git_repository_message_remove@Base 1.7.0
git_repository_new@Base 1.7.0
git_repository_odb@Base 1.7.0
git_repository_oid_type@Base 1.7.0
git_repository_open@Base 1.7.0
git_repository_open_bare@Base 1.7.0
git_repository_open_ext@Base 1.7.0
git_repository_open_from_worktree@Base 1.7.0
git_repository_path@Base 1.7.0
git_repository_refdb@Base 1.7.0
git_repository_reinit_filesystem@Base 1.7.0
git_repository_set_bare@Base 1.7.0
git_repository_set_config@Base 1.7.0
git_repository_set_head@Base 1.7.0
git_repository_set_head_detached@Base 1.7.0
git_repository_set_head_detached_from_annotated@Base 1.7.0
git_repository_set_ident@Base 1.7.0
git_repository_set_index@Base 1.7.0
git_repository_set_namespace@Base 1.7.0
git_repository_set_odb@Base 1.7.0
git_repository_set_refdb@Base 1.7.0
git_repository_set_workdir@Base 1.7.0
git_repository_state@Base 1.7.0
git_repository_state_cleanup@Base 1.7.0
git_repository_submodule_cache_all@Base 1.7.0
git_repository_submodule_cache_clear@Base 1.7.0
git_repository_workdir@Base 1.7.0
git_repository_wrap_odb@Base 1.7.0
git_reset@Base 1.7.0
git_reset_default@Base 1.7.0
git_reset_from_annotated@Base 1.7.0
git_revert@Base 1.7.0
git_revert_commit@Base 1.7.0
git_revert_init_options@Base 1.7.0
git_revert_options_init@Base 1.7.0
git_revparse@Base 1.7.0
git_revparse_ext@Base 1.7.0
git_revparse_single@Base 1.7.0
git_revwalk_add_hide_cb@Base 1.7.0
git_revwalk_free@Base 1.7.0
git_revwalk_hide@Base 1.7.0
git_revwalk_hide_glob@Base 1.7.0
git_revwalk_hide_head@Base 1.7.0
git_revwalk_hide_ref@Base 1.7.0
git_revwalk_new@Base 1.7.0
git_revwalk_next@Base 1.7.0
git_revwalk_push@Base 1.7.0
git_revwalk_push_glob@Base 1.7.0
git_revwalk_push_head@Base 1.7.0
git_revwalk_push_range@Base 1.7.0
git_revwalk_push_ref@Base 1.7.0
git_revwalk_repository@Base 1.7.0
git_revwalk_reset@Base 1.7.0
git_revwalk_simplify_first_parent@Base 1.7.0
git_revwalk_sorting@Base 1.7.0
git_signature_default@Base 1.7.0
git_signature_dup@Base 1.7.0
git_signature_free@Base 1.7.0
git_signature_from_buffer@Base 1.7.0
git_signature_new@Base 1.7.0
git_signature_now@Base 1.7.0
git_smart_subtransport_git@Base 1.7.0
git_smart_subtransport_http@Base 1.7.0
git_smart_subtransport_ssh@Base 1.7.0
git_stash_apply@Base 1.7.0
git_stash_apply_init_options@Base 1.7.0
git_stash_apply_options_init@Base 1.7.0
git_stash_drop@Base 1.7.0
git_stash_foreach@Base 1.7.0
git_stash_pop@Base 1.7.0
git_stash_save@Base 1.7.0
git_stash_save_options_init@Base 1.7.0
git_stash_save_with_opts@Base 1.7.0
git_status_byindex@Base 1.7.0
git_status_file@Base 1.7.0
git_status_foreach@Base 1.7.0
git_status_foreach_ext@Base 1.7.0
git_status_init_options@Base 1.7.0
git_status_list_entrycount@Base 1.7.0
git_status_list_free@Base 1.7.0
git_status_list_get_perfdata@Base 1.7.0
git_status_list_new@Base 1.7.0
git_status_options_init@Base 1.7.0
git_status_should_ignore@Base 1.7.0
git_strarray_copy@Base 1.7.0
git_strarray_dispose@Base 1.7.0
git_strarray_free@Base 1.7.0
git_stream_register@Base 1.7.0
git_stream_register_tls@Base 1.7.0
git_submodule_add_finalize@Base 1.7.0
git_submodule_add_setup@Base 1.7.0
git_submodule_add_to_index@Base 1.7.0
git_submodule_branch@Base 1.7.0
git_submodule_clone@Base 1.7.0
git_submodule_dup@Base 1.7.0
git_submodule_fetch_recurse_submodules@Base 1.7.0
git_submodule_foreach@Base 1.7.0
git_submodule_free@Base 1.7.0
git_submodule_head_id@Base 1.7.0
git_submodule_ignore@Base 1.7.0
git_submodule_index_id@Base 1.7.0
git_submodule_init@Base 1.7.0
git_submodule_location@Base 1.7.0
git_submodule_lookup@Base 1.7.0
git_submodule_name@Base 1.7.0
git_submodule_open@Base 1.7.0
git_submodule_owner@Base 1.7.0
git_submodule_path@Base 1.7.0
git_submodule_reload@Base 1.7.0
git_submodule_repo_init@Base 1.7.0
git_submodule_resolve_url@Base 1.7.0
git_submodule_set_branch@Base 1.7.0
git_submodule_set_fetch_recurse_submodules@Base 1.7.0
git_submodule_set_ignore@Base 1.7.0
git_submodule_set_update@Base 1.7.0
git_submodule_set_url@Base 1.7.0
git_submodule_status@Base 1.7.0
git_submodule_sync@Base 1.7.0
git_submodule_update@Base 1.7.0
git_submodule_update_init_options@Base 1.7.0
git_submodule_update_options_init@Base 1.7.0
git_submodule_update_strategy@Base 1.7.0
git_submodule_url@Base 1.7.0
git_submodule_wd_id@Base 1.7.0
git_tag_annotation_create@Base 1.7.0
git_tag_create@Base 1.7.0
git_tag_create_from_buffer@Base 1.7.0
git_tag_create_frombuffer@Base 1.7.0
git_tag_create_lightweight@Base 1.7.0
git_tag_delete@Base 1.7.0
git_tag_dup@Base 1.7.0
git_tag_foreach@Base 1.7.0
git_tag_free@Base 1.7.0
git_tag_id@Base 1.7.0
git_tag_list@Base 1.7.0
git_tag_list_match@Base 1.7.0
git_tag_lookup@Base 1.7.0
git_tag_lookup_prefix@Base 1.7.0
git_tag_message@Base 1.7.0
git_tag_name@Base 1.7.0
git_tag_name_is_valid@Base 1.7.0
git_tag_owner@Base 1.7.0
git_tag_peel@Base 1.7.0
git_tag_tagger@Base 1.7.0
git_tag_target@Base 1.7.0
git_tag_target_id@Base 1.7.0
git_tag_target_type@Base 1.7.0
git_trace_set@Base 1.7.0
git_transaction_commit@Base 1.7.0
git_transaction_free@Base 1.7.0
git_transaction_lock_ref@Base 1.7.0
git_transaction_new@Base 1.7.0
git_transaction_remove@Base 1.7.0
git_transaction_set_reflog@Base 1.7.0
git_transaction_set_symbolic_target@Base 1.7.0
git_transaction_set_target@Base 1.7.0
git_transport_init@Base 1.7.0
git_transport_local@Base 1.7.0
git_transport_new@Base 1.7.0
git_transport_register@Base 1.7.0
git_transport_remote_connect_options@Base 1.7.0
git_transport_smart@Base 1.7.0
git_transport_smart_certificate_check@Base 1.7.0
git_transport_smart_credentials@Base 1.7.0
git_transport_ssh_with_paths@Base 1.7.0
git_transport_unregister@Base 1.7.0
git_tree_create_updated@Base 1.7.0
git_tree_dup@Base 1.7.0
git_tree_entry_byid@Base 1.7.0
git_tree_entry_byindex@Base 1.7.0
git_tree_entry_byname@Base 1.7.0
git_tree_entry_bypath@Base 1.7.0
git_tree_entry_cmp@Base 1.7.0
git_tree_entry_dup@Base 1.7.0
git_tree_entry_filemode@Base 1.7.0
git_tree_entry_filemode_raw@Base 1.7.0
git_tree_entry_free@Base 1.7.0
git_tree_entry_id@Base 1.7.0
git_tree_entry_name@Base 1.7.0
git_tree_entry_to_object@Base 1.7.0
git_tree_entry_type@Base 1.7.0
git_tree_entrycount@Base 1.7.0
git_tree_free@Base 1.7.0
git_tree_id@Base 1.7.0
git_tree_lookup@Base 1.7.0
git_tree_lookup_prefix@Base 1.7.0
git_tree_owner@Base 1.7.0
git_tree_walk@Base 1.7.0
git_treebuilder_clear@Base 1.7.0
git_treebuilder_entrycount@Base 1.7.0
git_treebuilder_filter@Base 1.7.0
git_treebuilder_free@Base 1.7.0
git_treebuilder_get@Base 1.7.0
git_treebuilder_insert@Base 1.7.0
git_treebuilder_new@Base 1.7.0
git_treebuilder_remove@Base 1.7.0
git_treebuilder_write@Base 1.7.0
git_treebuilder_write_with_buffer@Base 1.7.0
git_worktree_add@Base 1.7.0
git_worktree_add_init_options@Base 1.7.0
git_worktree_add_options_init@Base 1.7.0
git_worktree_free@Base 1.7.0
git_worktree_is_locked@Base 1.7.0
git_worktree_is_prunable@Base 1.7.0
git_worktree_list@Base 1.7.0
git_worktree_lock@Base 1.7.0
git_worktree_lookup@Base 1.7.0
git_worktree_name@Base 1.7.0
git_worktree_open_from_repository@Base 1.7.0
git_worktree_path@Base 1.7.0
git_worktree_prune@Base 1.7.0
git_worktree_prune_init_options@Base 1.7.0
git_worktree_prune_options_init@Base 1.7.0
git_worktree_unlock@Base 1.7.0
git_worktree_validate@Base 1.7.0
giterr_clear@Base 1.7.0
giterr_last@Base 1.7.0
giterr_set_oom@Base 1.7.0
giterr_set_str@Base 1.7.0
|