summaryrefslogtreecommitdiff
path: root/include/git2/revparse.h
Commit message (Collapse)AuthorAgeFilesLines
* Some documentation improvementsRussell Belfer2013-08-281-16/+27
|
* revparse: Introduce git_revparse_ext()nulltoken2013-05-161-0/+22
| | | | | | Expose a way to retrieve, along with the target git_object, the reference pointed at by some revparse expression (`@{<-n>}` or `<branchname>@{upstream}` syntax).
* Update docsVicent Marti2013-04-151-9/+7
|
* git_revision -> git_revspecVicent Marti2013-04-151-2/+2
|
* Is this crazy?Vicent Marti2013-04-151-4/+10
|
* Clean up minor detailsBen Straub2013-04-151-3/+1
|
* Change git_revparse to output git_object pointersBen Straub2013-04-151-2/+2
| | | | This will probably prevent many lookup/free operations in calling code.
* Reintroduce git_revparse_single.Ben Straub2013-04-151-0/+14
|
* Deprecate git_revparse_single and _rangelikeBen Straub2013-04-091-25/+0
|
* Implement unified git_revparseBen Straub2013-04-081-16/+18
|
* Propose unified rev-parse APIBen Straub2013-04-081-0/+37
|
* revparse: Parse range-like syntaxGreg Price2013-04-061-0/+13
| | | | Signed-off-by: Greg Price <price@mit.edu>
* update copyrightsEdward Thomson2013-01-081-1/+1
|
* revparse: Deploy EINVALIDSPEC usagenulltoken2012-12-011-1/+2
|
* Adding comment documentation for rev-parse api.Ben Straub2012-05-111-3/+17
|
* First stab at implementation of rev-parse.Ben Straub2012-05-111-0/+22
This version supports refspecs of these kinds: - Full & partial SHAs - Output from "git describe" - "/refs/heads/master" (full ref names) - "master" (partial ref names) - "FETCH_HEAD" (named heads)