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
e01df928
Commit
e01df928
authored
Apr 08, 2023
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cherrypick: support sha256
parent
f4774446
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/libgit2/cherrypick.c
+3
-3
No files found.
src/libgit2/cherrypick.c
View file @
e01df928
...
...
@@ -106,10 +106,10 @@ static int cherrypick_state_cleanup(git_repository *repo)
static
int
cherrypick_seterr
(
git_commit
*
commit
,
const
char
*
fmt
)
{
char
commit_oidstr
[
GIT_OID_
SHA1
_HEXSIZE
+
1
];
char
commit_oidstr
[
GIT_OID_
MAX
_HEXSIZE
+
1
];
git_error_set
(
GIT_ERROR_CHERRYPICK
,
fmt
,
git_oid_tostr
(
commit_oidstr
,
GIT_OID_
SHA1
_HEXSIZE
+
1
,
git_commit_id
(
commit
)));
git_oid_tostr
(
commit_oidstr
,
GIT_OID_
MAX
_HEXSIZE
+
1
,
git_commit_id
(
commit
)));
return
-
1
;
}
...
...
@@ -173,7 +173,7 @@ int git_cherrypick(
git_cherrypick_options
opts
;
git_reference
*
our_ref
=
NULL
;
git_commit
*
our_commit
=
NULL
;
char
commit_oidstr
[
GIT_OID_
SHA1
_HEXSIZE
+
1
];
char
commit_oidstr
[
GIT_OID_
MAX
_HEXSIZE
+
1
];
const
char
*
commit_msg
,
*
commit_summary
;
git_str
their_label
=
GIT_STR_INIT
;
git_index
*
index
=
NULL
;
...
...
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