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
24ce105b
Commit
24ce105b
authored
Oct 03, 2011
by
Vicent Martí
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #441 from csware/ignore-missing-pack-file
ignore missing pack file
parents
ef1e5da1
599297fd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
+4
-1
src/odb_pack.c
+4
-1
No files found.
src/odb_pack.c
View file @
24ce105b
...
...
@@ -224,7 +224,10 @@ static int packfile_load__cb(void *_data, char *path)
}
error
=
git_packfile_check
(
&
pack
,
path
);
if
(
error
<
GIT_SUCCESS
)
if
(
error
==
GIT_ENOTFOUND
)
{
/* ignore missing .pack file as git does */
return
GIT_SUCCESS
;
}
else
if
(
error
<
GIT_SUCCESS
)
return
git__rethrow
(
error
,
"Failed to load packfile"
);
if
(
git_vector_insert
(
&
backend
->
packs
,
pack
)
<
GIT_SUCCESS
)
{
...
...
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