summaryrefslogtreecommitdiff
path: root/git.c
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-08-01 10:05:24 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-08-01 10:05:24 -0400
commit03860c7b8e6fa95133ba44b49ac0461501a7b728 (patch)
tree63805227c19786499763136b0218e684b3f844c3 /git.c
parent561277cc4110bcedecd02aa2dbebf15d26805a7b (diff)
Added `get_branch_commits()`.
It's currently a stub, but, I added it in order to at least get it to compile.
Diffstat (limited to 'git.c')
-rw-r--r--git.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/git.c b/git.c
index 4a76cc5..2ba16a1 100644
--- a/git.c
+++ b/git.c
@@ -263,6 +263,10 @@ int add_comment(comment *comment, const char *pr_root) {
return 1;
}
+file **get_branch_commits(git_branch *br) {
+ return NULL;
+}
+
int create_pull_request_dir(pull_request *pr, int id, const char *root) {
int ret = id;
struct stat st;