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
52b938d5
Commit
52b938d5
authored
Jun 29, 2012
by
nulltoken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revparse: unfound reflog entry returns ENOTFOUND
parent
08ac23a5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
+2
-1
src/revparse.c
+1
-1
tests-clar/refs/revparse.c
+1
-0
No files found.
src/revparse.c
View file @
52b938d5
...
...
@@ -245,7 +245,7 @@ static int walk_ref_history(git_object **out, git_repository *repo, const char *
if
(
numentries
<
n
)
{
giterr_set
(
GITERR_REFERENCE
,
"Reflog for '%s' has only %d entries, asked for %d"
,
git_buf_cstr
(
&
buf
),
numentries
,
n
);
retcode
=
GIT_E
RROR
;
retcode
=
GIT_E
NOTFOUND
;
}
else
{
const
git_reflog_entry
*
entry
=
git_reflog_entry_byindex
(
reflog
,
n
);
const
git_oid
*
oid
=
git_reflog_entry_oidold
(
entry
);
...
...
tests-clar/refs/revparse.c
View file @
52b938d5
...
...
@@ -129,6 +129,7 @@ void test_refs_revparse__reflog(void)
cl_git_fail
(
git_revparse_single
(
&
g_obj
,
g_repo
,
"@{1000}"
));
cl_assert_equal_i
(
GIT_ENOTFOUND
,
git_revparse_single
(
&
g_obj
,
g_repo
,
"nope@{0}"
));
cl_assert_equal_i
(
GIT_ENOTFOUND
,
git_revparse_single
(
&
g_obj
,
g_repo
,
"master@{31415}"
));
test_object
(
"@{-2}"
,
"a65fedf39aefe402d3bb6e24df4d4f5fe4547750"
);
test_object
(
"@{-1}"
,
"a4a7dce85cf63874e984719f4fdd239f5145052f"
);
...
...
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