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
545b479a
Commit
545b479a
authored
Feb 02, 2013
by
nulltoken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revparse: Lookup branch before described tag
Fix #1306
parent
e9631660
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
7 deletions
+42
-7
src/revparse.c
+7
-7
tests-clar/refs/revparse.c
+35
-0
No files found.
src/revparse.c
View file @
545b479a
...
...
@@ -126,13 +126,6 @@ static int revparse_lookup_object(git_object **out, git_repository *repo, const
int
error
;
git_reference
*
ref
;
error
=
maybe_describe
(
out
,
repo
,
spec
);
if
(
!
error
)
return
0
;
if
(
error
<
0
&&
error
!=
GIT_ENOTFOUND
)
return
error
;
error
=
disambiguate_refname
(
&
ref
,
repo
,
spec
);
if
(
!
error
)
{
error
=
git_object_lookup
(
out
,
repo
,
git_reference_target
(
ref
),
GIT_OBJ_ANY
);
...
...
@@ -143,6 +136,13 @@ static int revparse_lookup_object(git_object **out, git_repository *repo, const
if
(
error
<
0
&&
error
!=
GIT_ENOTFOUND
)
return
error
;
error
=
maybe_describe
(
out
,
repo
,
spec
);
if
(
!
error
)
return
0
;
if
(
error
<
0
&&
error
!=
GIT_ENOTFOUND
)
return
error
;
error
=
maybe_sha_or_abbrev
(
out
,
repo
,
spec
);
if
(
!
error
)
return
0
;
...
...
tests-clar/refs/revparse.c
View file @
545b479a
...
...
@@ -486,3 +486,38 @@ void test_refs_revparse__issue_994(void)
git_reference_free
(
head
);
cl_git_sandbox_cleanup
();
}
/**
* $ git rev-parse blah-7-gc47800c
* c47800c7266a2be04c571c04d5a6614691ea99bd
*
* $ git rev-parse HEAD~3
* 4a202b346bb0fb0db7eff3cffeb3c70babbd2045
*
* $ git branch blah-7-gc47800c HEAD~3
*
* $ git rev-parse blah-7-gc47800c
* 4a202b346bb0fb0db7eff3cffeb3c70babbd2045
*/
void
test_refs_revparse__try_to_retrieve_branch_before_described_tag
(
void
)
{
git_repository
*
repo
;
git_reference
*
branch
;
git_object
*
target
;
char
sha
[
GIT_OID_HEXSZ
+
1
];
repo
=
cl_git_sandbox_init
(
"testrepo.git"
);
test_object_inrepo
(
"blah-7-gc47800c"
,
"c47800c7266a2be04c571c04d5a6614691ea99bd"
,
repo
);
cl_git_pass
(
git_revparse_single
(
&
target
,
repo
,
"HEAD~3"
));
cl_git_pass
(
git_branch_create
(
&
branch
,
repo
,
"blah-7-gc47800c"
,
(
git_commit
*
)
target
,
0
));
git_oid_tostr
(
sha
,
GIT_OID_HEXSZ
+
1
,
git_object_id
(
target
));
test_object_inrepo
(
"blah-7-gc47800c"
,
sha
,
repo
);
git_reference_free
(
branch
);
git_object_free
(
target
);
cl_git_sandbox_cleanup
();
}
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