Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
4d13d07a
Commit
4d13d07a
authored
Mar 11, 2013
by
Ben Straub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Propose unified rev-parse API
parent
812e5aea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
+37
-0
include/git2/revparse.h
+37
-0
No files found.
include/git2/revparse.h
View file @
4d13d07a
...
@@ -45,6 +45,43 @@ GIT_EXTERN(int) git_revparse_single(git_object **out, git_repository *repo, cons
...
@@ -45,6 +45,43 @@ GIT_EXTERN(int) git_revparse_single(git_object **out, git_repository *repo, cons
*/
*/
GIT_EXTERN
(
int
)
git_revparse_rangelike
(
git_object
**
left
,
git_object
**
right
,
int
*
threedots
,
git_repository
*
repo
,
const
char
*
rangelike
);
GIT_EXTERN
(
int
)
git_revparse_rangelike
(
git_object
**
left
,
git_object
**
right
,
int
*
threedots
,
git_repository
*
repo
,
const
char
*
rangelike
);
/**
* Revparse flags. These indicate the intended behavior of the spec passed to
* git_revparse.
*/
typedef
enum
{
/** The spec targeted a single object. */
GIT_REVPARSE_SINGLE
=
1
<<
0
,
/** The spec targeted a range of commits. */
GIT_REVPARSE_RANGE
=
1
<<
1
,
/** The spec used the '...' operator, which invokes special semantics. */
GIT_REVPARSE_MERGE_BASE
=
1
<<
2
,
}
git_revparse_flag_t
;
/**
* Find an object or range of commits as specified by a revision string.
* See `man gitrevisions` or http://git-scm.com/docs/git-rev-parse.html#_specifying_revisions
* for information on the syntax accepted.
*
* @param left buffer that receives the target of the left side of a range operator. If
* there is no range operator, this buffer receives the single target.
* @param right buffer that receives the target of the right side of a range operator.
* This is only filled in if `spec` specifies a range of commits
* @param flags buffer that receives a bitwise combination of `git_revparse_flag_t` values
* @param repo the repository to search in
* @param spec the rev-parse spec to parse
* @return 0 on success, GIT_INVALIDSPEC, GIT_ENOTFOUND, GIT_EAMBIGUOUS or an error code
*/
GIT_EXTERN
(
int
)
git_revparse
(
git_oid
*
left
,
git_oid
*
right
,
unsigned
int
*
flags
,
git_repository
*
repo
,
const
char
*
spec
);
/** @} */
/** @} */
GIT_END_DECL
GIT_END_DECL
#endif
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment