summaryrefslogtreecommitdiff
path: root/include/git2/refspec.h
Commit message (Collapse)AuthorAgeFilesLines
* refspec: move to git_buf for outputting stringsCarlos Martín Nieto2014-01-271-4/+3
|
* Fixed most documentation header bugsAndreas Linde2013-06-241-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
* remote: add resfpec list accessorsCarlos Martín Nieto2013-04-301-0/+1
| | | | | | Bring back a way of acessing the git_refspec* from a remote. Closes #1514
* refspec: add direction accessorCarlos Martín Nieto2013-04-301-0/+8
|
* refspec: unify the string and parsed dataCarlos Martín Nieto2013-04-201-0/+8
| | | | | | | | It used to be separate as an attempt to make the querying easier, but it didn't work out that way, so put all the data together. Add git_refspec_string() as well to get the original string, which is now stored alongside the independent parts.
* Teach refspec to transform destination reference to source referenceJameson Miller2013-02-111-1/+12
|
* Teach remote branch to return its remoteJameson Miller2013-02-111-0/+9
|
* update copyrightsEdward Thomson2013-01-081-1/+1
|
* Correct typos in documentationKevin Sawicki2013-01-061-1/+1
|
* refspec: add git_refspec__free, remove git_refspec_parseCarlos Martín Nieto2012-09-301-8/+0
| | | | | | | The latter shouldn't be exposed and isn't used, git_refspec__parse supersedes it. Fix a leak in the refspec tests while we're at it.
* Expose git_refspec_parse()Carlos Martín Nieto2012-06-121-0/+8
| | | | | This function has been available for some time, but never in a header. Expose it so we can use it from outside the library.
* refspec: expose the force update specifier through git_refspec_force() accessornulltoken2012-05-301-0/+8
|
* 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>