| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | git_error: use new names in internal APIs and usage | Edward Thomson | 2019-01-22 | 1 | -2/+2 |
| | | | | | | Move to the `git_error` name in the internal API for error-related functions. | ||||
| * | Convert usage of `git_buf_free` to new `git_buf_dispose` | Patrick Steinhardt | 2018-06-10 | 1 | -1/+1 |
| | | |||||
| * | Make sure to always include "common.h" first | Patrick Steinhardt | 2017-07-03 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | Next to including several files, our "common.h" header also declares various macros which are then used throughout the project. As such, we have to make sure to always include this file first in all implementation files. Otherwise, we might encounter problems or even silent behavioural differences due to macros or defines not being defined as they should be. So in fact, our header and implementation files should make sure to always include "common.h" first. This commit does so by establishing a common include pattern. Header files inside of "src" will now always include "common.h" as its first other file, separated by a newline from all the other includes to make it stand out as special. There are two cases for the implementation files. If they do have a matching header file, they will always include this one first, leading to "common.h" being transitively included as first file. If they do not have a matching header file, they instead include "common.h" as first file themselves. This fixes the outlined problems and will become our standard practice for header and source files inside of the "src/" from now on. | ||||
| * | Add missing license headers | Patrick Steinhardt | 2017-07-03 | 1 | -0/+7 |
| | | | | | | Some implementation files were missing the license headers. This commit adds them. | ||||
| * | patch: error on diff callback failure | Edward Thomson | 2016-09-02 | 1 | -0/+3 |
| | | |||||
| * | Teach `git_patch_from_diff` about parsed diffsethomson/patch_from_diff | Edward Thomson | 2016-08-24 | 1 | -0/+6 |
| | | | | | | Ensure that `git_patch_from_diff` can return the patch for parsed diffs, not just generate a patch for a generated diff. | ||||
| * | patch parse: dup the patch from the callers | Edward Thomson | 2016-05-26 | 1 | -6/+0 |
| | | |||||
| * | patch: abstract patches into diff'ed and parsed | Edward Thomson | 2016-05-26 | 1 | -812/+131 |
| | | | | | | | Patches can now come from a variety of sources - either internally generated (from diffing two commits) or as the results of parsing some external data. | ||||
| * | patch parsing: parse binary patch files | Edward Thomson | 2016-05-26 | 1 | -9/+145 |
| | | |||||
| * | Patch parsing from patch files | Edward Thomson | 2016-05-26 | 1 | -0/+758 |
