summaryrefslogtreecommitdiff
path: root/src/mailmap.c
Commit message (Collapse)AuthorAgeFilesLines
* git_error: use new names in internal APIs and usageEdward Thomson2019-01-221-6/+6
| | | | | Move to the `git_error` name in the internal API for error-related functions.
* object_type: use new enumeration namesethomson/index_fixesEdward Thomson2018-12-011-1/+1
| | | | Use the new object_type enumeration names within the codebase.
* mailmap: Undefined or garbage value returned to callerEtienne Samson2018-08-211-1/+1
| | | | In case there was nothing to parse in the buf, we'd return uninitialized stack data.
* Require the length argument to git_mailmap_from_buffer and make ↵Nika Layzell2018-06-171-8/+4
| | | | mailmap_add_buffer internal
* mailmap: git_buf_free => git_buf_disposeNika Layzell2018-06-141-9/+9
|
* mailmap: Hide EEXISTS to simplify git_mailmap_add_entry callersNika Layzell2018-06-141-2/+4
|
* mailmap: Free the mailmap vectorNika Layzell2018-06-141-0/+2
|
* mailmap: API and style cleanupNika Layzell2018-06-141-53/+79
|
* mailmap: Rewrite API to support accurate mailmap resolutionNika Layzell2018-06-141-136/+246
|
* mailmap: API and style cleanupNika Layzell2018-06-141-33/+47
|
* mailmap: Switch mailmap parsing to use the git_parse moduleNika Layzell2018-06-141-193/+147
|
* mailmap: Fix more bugs which snuck in when I rebasedNika Layzell2018-06-141-2/+2
|
* mailmap: Make everything a bit more style conformingNika Layzell2018-06-141-25/+82
|
* mailmap: Don't error out when there's junk at the end of the lineEmilio Cobos Álvarez2018-06-141-3/+0
| | | | Also matches git.
* mailmap: Don't return a freed pointer, even if we return an error codeEmilio Cobos Álvarez2018-06-141-1/+3
|
* mailmap: Do not error out when the mailmap contains an invalid lineEmilio Cobos Álvarez2018-06-141-4/+4
| | | | This matches git.
* mailmap: Be consistent about checking len vs. len > 0Emilio Cobos Álvarez2018-06-141-1/+1
| | | | Not that it matters much anyway but...
* mailmap: git_vector_get already checks boundsEmilio Cobos Álvarez2018-06-141-4/+1
|
* mailmap: Some more style cleanupNika Layzell2018-06-141-3/+6
|
* mailmap: Clean up mailmap parser, and finish APINika Layzell2018-06-141-157/+274
|
* mailmap: WIP mailmap supportEmilio Cobos Álvarez2018-06-141-0/+208