summaryrefslogtreecommitdiff
path: root/git.c
AgeCommit message (Collapse)Author
2021-06-25Added some more log messages inmrb0nk500
`create_pull_request_dir()`.
2021-06-25Change the log types from `LOG_INFO` to `LOG_NOTICE`mrb0nk500
in `create_info()`.
2021-06-25Started work on `create_info()`.mrb0nk500
2021-06-25Remove the TODO in `create_pull_request_dir()`.mrb0nk500
2021-06-25Add error checking, and move the code for getting themrb0nk500
PR path, and getting the patch files to after the error checks.
2021-06-25Allow `create_pull_request_dir()` to use either themrb0nk500
ID, or title of the PR as the directory name.
2021-06-18Include `ctype.h` in `git.c`.mrb0nk500
2021-06-18Added code for creating format patch files of eachmrb0nk500
commit of a pull request.
2021-06-17Start work on some of the pull request handling code.mrb0nk500
2021-06-15Added include for `strings.h`.mrb0nk500
This is because `strcasecmp()` is technically in `strings.h`, rather than `string.h`.
2021-06-13Fixed a typo with appending the directory name to themrb0nk500
git root, and also comment out a debug log message. I forgot to add a `/` oof.
2021-06-13Fixed a stupid bug with not freeing the linked list.mrb0nk500
2021-06-13Added `cleanup_git()`.mrb0nk500
This function cleans up the initialized git state.
2021-06-13Include `git.h` in `pullreqd.c`.mrb0nk500
Also added the necessary externs.
2021-06-13Finished the git initialization code.mrb0nk500
2021-06-12Start work on the git related code.mrb0nk500