]> git.ipfire.org Git - thirdparty/git.git/blob - bundle-uri.h
Merge branch 'jk/clone-allow-bare-and-o-together'
[thirdparty/git.git] / bundle-uri.h
1 #ifndef BUNDLE_URI_H
2 #define BUNDLE_URI_H
3
4 struct repository;
5
6 /**
7 * Fetch data from the given 'uri' and unbundle the bundle data found
8 * based on that information.
9 *
10 * Returns non-zero if no bundle information is found at the given 'uri'.
11 */
12 int fetch_bundle_uri(struct repository *r, const char *uri);
13
14 #endif