summaryrefslogtreecommitdiff
path: root/include/git2/signature.h
Commit message (Collapse)AuthorAgeFilesLines
* 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>