Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | stash: fixes from code review | Edward Thomson | 2023-02-16 | 1 | -17/+5 |
| | |||||
* | stash: add `const` to arguments | Jacob Watson | 2022-07-14 | 1 | -1/+3 |
| | |||||
* | stash: implement partial stashing by path | Jacob Watson | 2022-07-14 | 1 | -1/+65 |
| | |||||
* | Make enum in includes C90 compliant by removing trailing comma. | Peter Pettersson | 2021-11-15 | 1 | -3/+3 |
| | |||||
* | Fix coding style for pointer | punkymaniac | 2021-09-09 | 1 | -1/+1 |
| | | | | Make some syntax change to follow coding style. | ||||
* | stash: make comment match code | Josh Bleecher Snyder | 2019-12-04 | 1 | -1/+1 |
| | | | | There is no git_stash_apply_flags_t above. | ||||
* | Don't use enum for flags | Sven Strickroth | 2019-09-26 | 1 | -1/+1 |
| | | | | | | Using an `enum` causes trouble when used with C++ as bitwise operations are not possible w/o casting (e.g., `opts.flags &= ~GIT_BLOB_FILTER_CHECK_FOR_BINARY;` is invalid as there is no `&=` operator for `enum`). Signed-off-by: Sven Strickroth <email@cs-ware.de> | ||||
* | Rename opt init functions to `options_init` | Edward Thomson | 2019-06-14 | 1 | -2/+2 |
| | | | | | | | | | | | | | 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. | ||||
* | Introduce GIT_CALLBACK macro to enforce cdecl | Edward Thomson | 2019-01-17 | 1 | -2/+2 |
| | | | | | | | | | Since we now always build the library with cdecl calling conventions, our callbacks should be decorated as such so that users will not be able to provide callbacks defined with other calling conventions. The `GIT_CALLBACK` macro will inject the `__cdecl` attribute as appropriate. | ||||
* | docs: standardize struct git_*_options comments | Etienne Samson | 2018-05-07 | 1 | -4/+4 |
| | |||||
* | docs: standardize comment block for git_*_init_options functions | Etienne Samson | 2018-05-07 | 1 | -4/+5 |
| | |||||
* | docs: missing documentation comment | Etienne Samson | 2018-05-07 | 1 | -0/+1 |
| | |||||
* | docs: add buffer.h & oid.h to types.h | Etienne Samson | 2018-05-07 | 1 | -0/+1 |
| | | | | Otherwise docurium/clang chokes on the types, and ignores the documentation comments altogether. | ||||
* | Flag optional parameters for apply and pop | Remy Suen | 2017-02-09 | 1 | -2/+2 |
| | | | | The options parameter in both git_stash_apply and git_stash_pop can be NULL. They should be flagged as such in the documentation. | ||||
* | Export git_stash_apply_init_options | jbreeden | 2016-01-23 | 1 | -1/+1 |
| | |||||
* | Fix a couple function signatures | Thomas Edvalson | 2015-12-14 | 1 | -1/+1 |
| | |||||
* | stash_apply: provide progress callbacks | Edward Thomson | 2015-05-11 | 1 | -0/+38 |
| | |||||
* | stash_apply: provide its own options structure | Edward Thomson | 2015-05-11 | 1 | -17/+50 |
| | |||||
* | stash apply: default to at least GIT_CHECKOUT_SAFE | Edward Thomson | 2015-05-11 | 1 | -1/+3 |
| | |||||
* | stash: document merge conflicts | Edward Thomson | 2015-05-11 | 1 | -13/+11 |
| | |||||
* | stash: refactor to use merge_iterators | Edward Thomson | 2015-05-11 | 1 | -6/+6 |
| | |||||
* | Added git_stash_apply() and git_stash_pop() APIs | Pierre-Olivier Latour | 2015-05-11 | 1 | -4/+64 |
| | |||||
* | doc: add documentation to all the public structs and enumscmn/doc-all | Carlos MartÃn Nieto | 2014-12-06 | 1 | -6/+15 |
| | | | | | | | | | | 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 | ||||
* | Update docs for new callback return value behavior | Russell Belfer | 2013-12-11 | 1 | -11/+7 |
| | |||||
* | Make the git_signature const in the stash API. | Etienne Samson | 2013-07-09 | 1 | -1/+1 |
| | |||||
* | Fixed most documentation header bugs | Andreas Linde | 2013-06-24 | 1 | -1/+1 |
| | | | | | | | | | | | Fixed a few header @param and @return typos with the help of -Wdocumentation in Xcode. The following warnings have not been fixed: common.h:213 - Not sure how the documentation format is for '...' notes.h:102 - Correct @param name but empty text notes.h:111 - Correct @param name but empty text pack.h:140 - @return missing text pack.h:148 - @return missing text | ||||
* | update copyrights | Edward Thomson | 2013-01-08 | 1 | -1/+1 |
| | |||||
* | API updates for stash.h | Ben Straub | 2012-11-27 | 1 | -9/+8 |
| | |||||
* | stash: add git_stash_drop() | nulltoken | 2012-10-26 | 1 | -0/+15 |
| | |||||
* | stash: add git_stash_foreach() | nulltoken | 2012-10-26 | 1 | -0/+40 |
| | |||||
* | stash: add git_stash_save() | nulltoken | 2012-10-26 | 1 | -0/+67 |