stagit
static git repository generator
git clone https://9o.is/git/stagit.git
commit ee21b8f5fe1a23a8e56084bdcb8cc11f2b34079e parent d12a58cff353b4174e2a029502b85f7719fe4e1e Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Wed, 9 Dec 2015 22:55:59 +0100 open repo: dont try to detect repos above the specified dir Diffstat:
| M | urmoms.c | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/urmoms.c b/urmoms.c @@ -557,7 +557,8 @@ main(int argc, char *argv[]) git_libgit2_init(); - if ((status = git_repository_open(&repo, repodir)) < 0) { + if ((status = git_repository_open_ext(&repo, repodir, + GIT_REPOSITORY_OPEN_NO_SEARCH, NULL)) < 0) { e = giterr_last(); fprintf(stderr, "error %d/%d: %s\n", status, e->klass, e->message); return status;