diff options
author | Vicent Marti <tanoku@gmail.com> | 2013-04-17 04:46:37 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2013-04-17 04:46:37 +0200 |
commit | a442ed687d4c01a68de9aa7b0e50902f17a1ea84 (patch) | |
tree | 0f0aa7855addf766a8d22fcf04a4728c606f1989 /include/git2/repository.h | |
parent | f124ebd457bfbf43de3516629aaba5a279636e04 (diff) | |
download | libgit2-vmg/bare-open.tar.gz |
repository: Add `git_repository_open_bare`vmg/bare-open
Diffstat (limited to 'include/git2/repository.h')
-rw-r--r-- | include/git2/repository.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/git2/repository.h b/include/git2/repository.h index e75c8b136..e3320975c 100644 --- a/include/git2/repository.h +++ b/include/git2/repository.h @@ -124,6 +124,21 @@ GIT_EXTERN(int) git_repository_open_ext( const char *ceiling_dirs); /** + * Open a bare repository on the serverside. + * + * This is a fast open for bare repositories that will come in handy + * if you're e.g. hosting git repositories and need to access them + * efficiently + * + * @param out Pointer to the repo which will be opened. + * @param bare_path Direct path to the bare repository + * @return 0 on success, or an error code + */ +GIT_EXTERN(int) git_repository_open_bare( + git_repository **out, + const char *bare_path); + +/** * Free a previously allocated repository * * Note that after a repository is free'd, all the objects it has spawned |