repo.or.cz
/
git.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
t1509: make "setup" test more robust
[git.git]
/
bundle-uri.h
blob
8a152f1ef142f953ac760dc62e49b47074aae8ea
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