]> git.ipfire.org Git - thirdparty/git.git/blame - bundle-uri.h
Merge branch 'nb/doc-mergetool-typofix'
[thirdparty/git.git] / bundle-uri.h
CommitLineData
53a50892
DS
1#ifndef BUNDLE_URI_H
2#define BUNDLE_URI_H
3
4struct 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 */
12int fetch_bundle_uri(struct repository *r, const char *uri);
13
14#endif