Add build flag for disable http transport

This commit is contained in:
Nikolay Govorov
2026-05-03 12:41:49 +01:00
parent 5332759cff
commit dac34eeecd
13 changed files with 102 additions and 14 deletions

View File

@@ -173,7 +173,10 @@ typedef enum {
GIT_FEATURE_SHA1 = (1 << 10),
/** SHA256 object support */
GIT_FEATURE_SHA256 = (1 << 11)
GIT_FEATURE_SHA256 = (1 << 11),
/** HTTP remotes */
GIT_FEATURE_HTTP = (1 << 12)
} git_feature_t;
/**