summaryrefslogtreecommitdiff
path: root/include/git2/signature.h
Commit message (Collapse)AuthorAgeFilesLines
* doc: clarify that git_time_t is seconds from the epochEtienne Samson2019-01-281-2/+2
|
* Introduce `git_signature_from_buffer`ethomson/signature_from_bufferEdward Thomson2016-04-281-0/+13
| | | | | Allow users to construct a signature from the type of signature lines that actually appear in commits.
* Fixed miscellaneous documentation errors.Michael Anderson2014-05-231-1/+1
|
* Align git_signature_dup.Arthur Schreiber2014-01-141-3/+4
| | | | | | This changes git_signature_dup to actually honor oom conditions raised by the call to git__strdup. It also aligns it with the error code return pattern used everywhere else.
* Add new git_signature_default API using configRussell Belfer2013-08-161-0/+13
| | | | | This adds a new API for creating a signature that uses the config to look up "user.name" and "user.email".
* update copyrightsEdward Thomson2013-01-081-1/+1
|
* Various minor commenting fixesRussell Belfer2012-11-271-8/+15
|
* API updates for signature.hBen Straub2012-11-271-6/+7
|
* signature: prevent angle bracket usage in identitynulltoken2012-07-111-0/+3
|
* errors: Rename the generic return codesVicent Martí2012-05-181-2/+2
|
* Update Copyright headerschu2012-02-131-1/+1
| | | | Signed-off-by: schu <schu-github@schulog.org>
* Cleanup legal dataVicent Marti2011-09-191-21/+3
| | | | | | | | | | 1. The license header is technically not valid if it doesn't have a copyright signature. 2. The COPYING file has been updated with the different licenses used in the project. 3. The full GPLv2 header in each file annoys me.
* Standardized doxygen @return lines for int functions to say "GIT_SUCCESS or ↵David Boyce2011-09-131-2/+2
| | | | an error code".
* signature: adjust API to return error codesschu2011-08-031-4/+6
| | | | | | | | git_signature_new() and git_signature_now() currently don't return error codes. Change the API to return error codes and not pointers to let the user handle errors properly. Signed-off-by: schu <schu-github@schulog.org>
* Update documentationVicent Marti2011-06-161-1/+1
| | | | Fix all the missmatched arguments in the docs
* Rename `git_signature_new_now`Vicent Marti2011-04-091-1/+1
| | | | The new name is more cool.
* Add API git_signature_new_nowCarlos Martín Nieto2011-04-091-0/+11
| | | | | | | | | Most tags will have a timestamp of whenever the code is running and dealing with time and timezones is error-prone. Optimize for this case by adding a function which causes the signature to be created with a current timestamp. Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
* Fix the signature documentationCarlos Martín Nieto2011-04-091-6/+6
| | | | | | The parameters are given by '@param name' and not '@name'. Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
* signature.h: Fix tiny typoschu2011-03-281-1/+1
|
* Switch from time_t to git_time_tnulltoken2011-03-231-1/+1
| | | | git_time_t is defined as a signed 64 integer. This allows a true predictable multiplatform behavior.
* Move the external includes folder from `src` to `include`Vicent Marti2011-03-031-0/+70
Signed-off-by: Vicent Marti <tanoku@gmail.com>