summaryrefslogtreecommitdiffstats
path: root/volgit.c
blob: 76ae0d7f454a9fc06ce2d56893959786acbd6011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include <git2.h>


int main()
{
	git_branch_iterator *it;
	git_repository *repo;


	git_repository_open(&repo,".");
	git_branch_iterator_new(&it,repo,GIT_BRANCH_LOCAL);




	git_repository_free(repo);
	git_branch_iterator_free(it);

	return 0;
}