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
14d2a60a
Commit
14d2a60a
authored
Jul 28, 2022
by
yuangli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix load_grafts
parent
c01b7841
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
src/libgit2/repository.c
+7
-0
No files found.
src/libgit2/repository.c
View file @
14d2a60a
...
...
@@ -735,6 +735,13 @@ static int load_grafts(git_repository *repo)
git_str
path
=
GIT_STR_INIT
;
int
error
;
if
((
error
=
git_repository__item_path
(
&
path
,
repo
,
GIT_REPOSITORY_ITEM_INFO
))
<
0
||
(
error
=
git_str_joinpath
(
&
path
,
path
.
ptr
,
"grafts"
))
<
0
||
(
error
=
git_grafts_from_file
(
&
repo
->
grafts
,
path
.
ptr
))
<
0
)
goto
error
;
git_str_clear
(
&
path
);
if
((
error
=
git_str_joinpath
(
&
path
,
repo
->
gitdir
,
"shallow"
))
<
0
||
(
error
=
git_grafts_from_file
(
&
repo
->
shallow_grafts
,
path
.
ptr
))
<
0
)
goto
error
;
...
...
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