]> git.proxmox.com Git - libgit2.git/blame - src/fetch.h
New upstream version 1.4.3+dfsg.1
[libgit2.git] / src / fetch.h
CommitLineData
bb742ede 1/*
359fc2d2 2 * Copyright (C) the libgit2 contributors. All rights reserved.
bb742ede
VM
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
e1d88030
CMN
7#ifndef INCLUDE_fetch_h__
8#define INCLUDE_fetch_h__
9
eae0bfdc
PP
10#include "common.h"
11
12#include "git2/remote.h"
13
2c982daa
CMN
14#include "netops.h"
15
35a8a8c5 16int git_fetch_negotiate(git_remote *remote, const git_fetch_options *opts);
e1d88030 17
e579e0f7 18int git_fetch_download_pack(git_remote *remote);
216863c4 19
dee5515a 20int git_fetch_setup_walk(git_revwalk **out, git_repository *repo);
2c982daa 21
e1d88030 22#endif