summaryrefslogtreecommitdiff
path: root/include/git2/cherrypick.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix copy&paste in git_cherrypick_commit docstringDave Lee2019-11-291-2/+2
|
* Rename opt init functions to `options_init`Edward Thomson2019-06-141-1/+1
| | | | | | | | | | | | | In libgit2 nomenclature, when we need to verb a direct object, we name a function `git_directobject_verb`. Thus, if we need to init an options structure named `git_foo_options`, then the name of the function that does that should be `git_foo_options_init`. The previous names of `git_foo_init_options` is close - it _sounds_ as if it's initializing the options of a `foo`, but in fact `git_foo_options` is its own noun that should be respected. Deprecate the old names; they'll now call directly to the new ones.
* docs: standardize comment block for git_*_init_options functionsEtienne Samson2018-05-071-4/+6
|
* Use correct Doxygen trailing comment syntaxBen Chatelain2015-02-101-2/+2
|
* Fix doc comment formattingBen Chatelain2015-02-101-2/+2
|
* doc: add documentation to all the public structs and enumscmn/doc-allCarlos Martín Nieto2014-12-061-2/+5
| | | | | | | | | | This makes them show up in the reference, even if the text itself isn't the most descriptive. These have been found with grep -Przon '\n\ntypedef struct.*?\{' -- include grep -Przon '\n\ntypedef enum.*?\{' -- include
* git_cherry_pick -> git_cherrypickEdward Thomson2014-07-221-15/+15
|
* Fixed miscellaneous documentation errors.Michael Anderson2014-05-231-1/+1
|
* Fix remaining init_options inconsistenciesRussell Belfer2014-05-021-6/+5
| | | | | There were a couple of "init_opts()" functions a few more cases of structure initialization that I somehow missed.
* Added cherry-pick supportJacques Germishuys2014-04-141-0/+88