mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-04 21:46:22 +00:00
10 lines
150 B
C
10 lines
150 B
C
#ifndef INCLUDE_branch_h__
|
|
#define INCLUDE_branch_h__
|
|
|
|
struct git_branch {
|
|
char *remote; /* TODO: Make this a git_remote */
|
|
char *merge;
|
|
};
|
|
|
|
#endif
|