blob: 462b782a92784ea9e0b21fee1e5335bc7dc4b911 (
plain) (
tree)
|
|
/*
* Copyright (c) 2022 Egor Tensin <egor@tensin.name>
* This file is part of the "cimple" project.
* For details, see https://github.com/egor-tensin/cimple.
* Distributed under the MIT License.
*/
#ifndef __GIT_H__
#define __GIT_H__
#include <git2.h>
int libgit_init(void);
void libgit_shutdown(void);
/* These never check out any files (so that we don't have to do 2 checkouts). */
int libgit_clone(git_repository **, const char *url, const char *dir);
int libgit_clone_to_tmp(git_repository **, const char *url);
/* Free a cloned repository. */
void libgit_repository_free(git_repository *);
/* I tried to make this an equivalent of `git checkout`. */
int libgit_checkout(git_repository *, const char *rev);
#endif
|