Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-01-09update copyrightsEdward Thomson
2012-12-01delta-apply: add git__delta_read_headerDavid Michael Barr
2012-05-18errors: Rename the generic return codesVicent Martí
2012-05-03Remove old and unused error codesVicent Martí
2012-04-26error handling: move the missing parts over to the new error handlingCarlos Martín Nieto
2012-02-13Update Copyright headerschu
Signed-off-by: schu <schu-github@schulog.org>
2011-10-29global: Properly use `git__` memory wrappersVicent Marti
Ensure that all memory related functions (malloc, calloc, strdup, free, etc) are using their respective `git__` wrappers.
2011-09-19Tabify everythingVicent Marti
There were quite a few places were spaces were being used instead of tabs. Try to catch them all. This should hopefully not break anything. Except for `git blame`. Oh well.
2011-09-19Cleanup legal dataVicent Marti
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.
2011-05-23delta-apply.c: Move to new error handling mechanismJakob Pfender
2011-05-23delta-apply.c: Use GIT_ENOMEM instead of GIT_ERROR when allocatingJakob Pfender
git__delta_apply used to return with a generic GIT_ERROR when allocating memory for the delta failed. Fix this to return GIT_ENOMEM.
2010-12-07Change the library include fileVicent Marti
Libgit2 is now officially include as #include "<git2.h>" or indidividual files may be included as #include <git2/index.h> Signed-off-by: Vicent Marti <tanoku@gmail.com>
2010-09-19Give object structures more descriptive namesVicent Marti
The 'git_obj' structure is now called 'git_rawobj', since it represents a raw object read from the ODB. The 'git_repository_object' structure is now called 'git_object', since it's the base object class for all objects. Signed-off-by: Vicent Marti <tanoku@gmail.com>
2010-01-20msvc: Fix some -W4 warningsRamsay Jones
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
2009-03-18Fix some (digital-mars) compiler warningsRamsay Jones
In particular, conditional expressions which contain an assignment statement, where the expression type is not explicitly made to be boolean, elicits the following message: warning 2: possible unintended assignment Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-01-28Fix a sparse "symbol not declared" warningRamsay Jones
In particular, the git__delta_apply() function has not been declared prior to it's definition. In order to suppress the warning, include the delta-apply.h header which provides the public interface. This ensures that the declaration and definition are consistent. Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-01-03Add the binary delta apply algorithm for pack style deltasShawn O. Pearce
The git__delta_apply() function can be used to apply a Git style delta, such as those used in pack files or in git patch files, to recover the original object stream. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>