aboutsummaryrefslogtreecommitdiffstats
path: root/bundle-uri.c
AgeCommit message (Expand)AuthorFilesLines
2023-12-26treewide: remove unnecessary includes in source filesElijah Newren1-1/+0
2023-08-29bundle-uri: mark unused parameters in callbacksJeff King1-3/+3
2023-07-06Merge branch 'gc/config-context'Junio C Hamano1-2/+7
2023-06-28config: pass ctx with config filesGlen Choo1-0/+1
2023-06-28config: add ctx arg to config_fn_tGlen Choo1-2/+6
2023-06-21object-store-ll.h: split this header out of object-store.hElijah Newren1-1/+1
2023-05-09Merge branch 'en/header-split-cache-h-part-2'Junio C Hamano1-1/+2
2023-04-24treewide: remove cache.h inclusion due to previous changesElijah Newren1-1/+1
2023-04-24copy.h: move declarations for copy.c functions from cache.hElijah Newren1-0/+1
2023-04-24fetch_bundle_uri(): drop pointless NULL checkJeff King1-2/+2
2023-04-06Merge branch 'ds/fetch-bundle-uri-with-all'Junio C Hamano1-0/+9
2023-03-31fetch: download bundles once, even with --allDerrick Stolee1-0/+9
2023-03-21environment.h: move declarations for environment.c functions from cache.hElijah Newren1-0/+1
2023-03-21treewide: be explicit about dependence on gettext.hElijah Newren1-0/+1
2023-02-24serve: use repository pointer to get configJeff King1-1/+1
2023-02-15Merge branch 'ds/bundle-uri-5'Junio C Hamano1-3/+246
2023-01-31bundle-uri: store fetch.bundleCreationTokenDerrick Stolee1-2/+46
2023-01-31clone: set fetch.bundleURI if appropriateDerrick Stolee1-1/+4
2023-01-31bundle-uri: download in creationToken orderDerrick Stolee1-2/+154
2023-01-31bundle-uri: parse bundle.<id>.creationToken valuesDerrick Stolee1-0/+10
2023-01-31bundle-uri: parse bundle.heuristic=creationTokenDerrick Stolee1-0/+34
2023-01-08convert trivial uses of strncmp() to starts_with()Jeff King1-1/+1
2022-12-25bundle-uri: download bundles from an advertised listDerrick Stolee1-0/+21
2022-12-25bundle-uri: allow relative URLs in bundle listsDerrick Stolee1-1/+15
2022-12-25bundle-uri: serve bundle.* keys from configDerrick Stolee1-1/+15
2022-12-25protocol v2: add server-side "bundle-uri" skeletonÆvar Arnfjörð Bjarmason1-0/+36
2022-10-12bundle-uri: suppress stderr from remote-httpsDerrick Stolee1-0/+1
2022-10-12bundle-uri: quiet failed unbundlingsDerrick Stolee1-1/+2
2022-10-12bundle: add flags to verify_bundle()Derrick Stolee1-1/+6
2022-10-12bundle-uri: fetch a list of bundlesDerrick Stolee1-16/+187
2022-10-12bundle-uri: limit recursion depth for bundle listsDerrick Stolee1-1/+20
2022-10-12bundle-uri: parse bundle list in config formatDerrick Stolee1-0/+27
2022-10-12bundle-uri: unit test "key=value" parsingÆvar Arnfjörð Bjarmason1-0/+33
2022-10-12bundle-uri: create "key=value" line parsingÆvar Arnfjörð Bjarmason1-1/+26
2022-10-12bundle-uri: create base key-value pair parsingDerrick Stolee1-0/+76
2022-10-12bundle-uri: create bundle_list struct and helpersDerrick Stolee1-0/+60
2022-10-12bundle-uri: use plain string in find_temp_filename()Derrick Stolee1-12/+16
2022-08-10bundle-uri: add support for http(s):// and file://Derrick Stolee1-3/+67
2022-08-10bundle-uri: create basic file-copy logicDerrick Stolee1-0/+104