summaryrefslogtreecommitdiff
path: root/include/git2/branch.h
blob: 456b7d1ac82636073a4fcd08d7c23dc278e32884 (plain)
1
2
3
4
5
6
7
8
9
#ifndef INCLUDE_branch_h__
#define INCLUDE_branch_h__

struct git_branch {
	char *remote; /* TODO: Make this a git_remote */
	char *merge;
};

#endif