summaryrefslogtreecommitdiff
path: root/include/git2/revert.h
Commit message (Collapse)AuthorAgeFilesLines
* 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-3/+5
|
* Flag given_opts in git_revert as optionalRemy Suen2017-02-041-1/+1
| | | | The given_opts argument can actually be NULL and thus should be flagged accordingly in the header file.
* Use correct Doxygen trailing comment syntaxBen Chatelain2015-02-101-2/+2
|
* Fix doc comment formattingBen Chatelain2015-02-101-2/+2
|
* Fixed git_revert() documentationPierre-Olivier Latour2014-12-301-1/+1
|
* 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
* Export git_revert_commitEdward Thomson2014-06-251-1/+1
|
* Fixed miscellaneous documentation errors.Michael Anderson2014-05-231-4/+3
|
* 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.
* Update git_merge_tree_opts to git_merge_optionsEdward Thomson2014-03-201-3/+3
|
* git_revert_opts -> git_revert_optionsoptions-namesBen Straub2014-03-061-9/+9
|
* git_checkout_opts -> git_checkout_optionsBen Straub2014-03-061-2/+2
|
* Added function-based initializers for every options struct.Matthew Bowen2014-03-051-0/+13
| | | | The basic structure of each function is courtesy of arrbee.
* Bare naked merge and rebaseEdward Thomson2013-12-031-7/+30
|
* Introduce git_revert to revert a single commitEdward Thomson2013-12-021-0/+52