File tree 1 file changed +73
-0
lines changed
1 file changed +73
-0
lines changed Original file line number Diff line number Diff line change 61
61
from .utils import to_bytes , to_str
62
62
63
63
64
+ __all__ = (
65
+ # Low level API
66
+ 'Object' ,
67
+ 'Reference' ,
68
+ 'AlreadyExistsError' ,
69
+ 'Blob' ,
70
+ 'Branch' ,
71
+ 'Commit' ,
72
+ 'Diff' ,
73
+ 'DiffDelta' ,
74
+ 'DiffFile' ,
75
+ 'DiffHunk' ,
76
+ 'DiffLine' ,
77
+ 'DiffStats' ,
78
+ 'GitError' ,
79
+ 'InvalidSpecError' ,
80
+ 'Mailmap' ,
81
+ 'Note' ,
82
+ 'Odb' ,
83
+ 'OdbBackend' ,
84
+ 'OdbBackendLoose' ,
85
+ 'OdbBackendPack' ,
86
+ 'Oid' ,
87
+ 'Patch' ,
88
+ 'RefLogEntry' ,
89
+ 'Refdb' ,
90
+ 'RefdbBackend' ,
91
+ 'RefdbFsBackend' ,
92
+ 'Repository' ,
93
+ 'RevSpec' ,
94
+ 'Signature' ,
95
+ 'Stash' ,
96
+ 'Tag' ,
97
+ 'Tree' ,
98
+ 'TreeBuilder' ,
99
+ 'Walker' ,
100
+ 'Worktree' ,
101
+ #
102
+ 'Blame' ,
103
+ 'BlameHunk' ,
104
+ 'BlobIO' ,
105
+ 'Payload' ,
106
+ # callbacks
107
+ 'RemoteCallbacks' ,
108
+ 'CheckoutCallbacks' ,
109
+ 'StashApplyCallbacks' ,
110
+ 'git_clone_options' ,
111
+ 'git_fetch_options' ,
112
+ 'git_proxy_options' ,
113
+ 'get_credentials' ,
114
+ #
115
+ 'Config' ,
116
+ # credentials
117
+ 'Username' ,
118
+ 'UserPass' ,
119
+ 'Keypair' ,
120
+ 'KeypairFromAgent' ,
121
+ 'KeypairFromMemory' ,
122
+ #
123
+ 'check_error' ,
124
+ 'Passthrough' ,
125
+ 'Filter' ,
126
+ 'Index' ,
127
+ 'IndexEntry' ,
128
+ 'PackBuilder' ,
129
+ 'Remote' ,
130
+ 'Repository' ,
131
+ 'Settings' ,
132
+ 'Submodule' ,
133
+ 'to_bytes' ,
134
+ 'to_str' ,
135
+ )
136
+
64
137
# Features
65
138
features = enums .Feature (C .git_libgit2_features ())
66
139
You can’t perform that action at this time.
0 commit comments