blob: 422d3530d30463db9ea502be553f4908e84d1454 (
plain) (
tree)
|
|
/*
* Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com>
* 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
|