summaryrefslogtreecommitdiff
path: root/include/git2/refspec.h
Commit message (Collapse)AuthorAgeFilesLines
* errors: Rename error codesbreaking-changesVicent Martí2012-05-181-1/+1
|
* errors: Rename the generic return codesVicent Martí2012-05-181-1/+1
|
* Add missing GIT_EXTERN declarationsSascha Cunz2012-05-141-4/+4
|
* Remove old and unused error codesVicent Martí2012-05-021-4/+4
|
* Update Copyright headerschu2012-02-131-1/+1
| | | | Signed-off-by: schu <schu-github@schulog.org>
* include: Unify internal include strategiesVicent Marti2011-11-181-1/+1
| | | | | Do not add the `git2` path to internal includes, or that will cause an extra path dependency.
* 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-1/+1
| | | | an error code".
* On some header files, GIT_END_DECL was absent while GIT_BEGIN_DECL wasn't.Johan 't Hart2011-07-271-0/+3
|
* Cleanup external APIVicent Marti2011-07-111-0/+33
| | | | | Some of the WIP API calls have been hidden in preparation for the next minor release.
* include: Fix unmatched params in documentationVicent Marti2011-07-111-3/+3
|
* Add git_refspec_transformCarlos Martín Nieto2011-06-261-0/+10
| | | | Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
* Add git.git's fnmatch, which is really GNU's and the git__fnmatch wrapperCarlos Martín Nieto2011-06-261-0/+10
| | | | | | | | | | | | | If the strings match, git__fnmatch returns GIT_SUCCESS and GIT_ENOMATCH on failure to match. MSVC fixes: Added a test for _MSC_VER and (in that case) defined HAVE_STRING_H to 1 so it doesn't try to include <strings.h> which doesn't exist in the MSVC world. Moved the function declarations to use the modern inline ones so MSVC doesn't have a fit. Added casts everywhere so MSVC doesn't crap its pants. Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
* Add a remotes APICarlos Martín Nieto2011-06-261-0/+22
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>