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
0309e850
Commit
0309e850
authored
Feb 21, 2013
by
Vicent Martí
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1352 from ethomson/reuc_sort
add a sorter to the reuc on index creation
parents
f2e1d060
eb5ffd19
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
src/index.c
+2
-1
No files found.
src/index.c
View file @
0309e850
...
@@ -275,7 +275,8 @@ int git_index_open(git_index **index_out, const char *index_path)
...
@@ -275,7 +275,8 @@ int git_index_open(git_index **index_out, const char *index_path)
index
->
on_disk
=
1
;
index
->
on_disk
=
1
;
}
}
if
(
git_vector_init
(
&
index
->
entries
,
32
,
index_cmp
)
<
0
)
if
(
git_vector_init
(
&
index
->
entries
,
32
,
index_cmp
)
<
0
||
git_vector_init
(
&
index
->
reuc
,
32
,
reuc_cmp
)
<
0
)
return
-
1
;
return
-
1
;
index
->
entries_cmp_path
=
index_cmp_path
;
index
->
entries_cmp_path
=
index_cmp_path
;
...
...
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