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
a2fa9a57
Commit
a2fa9a57
authored
Jun 02, 2021
by
punkymaniac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some missing documentation about return value
parent
eeacd234
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
include/git2/apply.h
+2
-0
include/git2/tree.h
+2
-0
No files found.
include/git2/apply.h
View file @
a2fa9a57
...
@@ -100,6 +100,7 @@ GIT_EXTERN(int) git_apply_options_init(git_apply_options *opts, unsigned int ver
...
@@ -100,6 +100,7 @@ GIT_EXTERN(int) git_apply_options_init(git_apply_options *opts, unsigned int ver
* @param preimage the tree to apply the diff to
* @param preimage the tree to apply the diff to
* @param diff the diff to apply
* @param diff the diff to apply
* @param options the options for the apply (or null for defaults)
* @param options the options for the apply (or null for defaults)
* @return 0 or an error code
*/
*/
GIT_EXTERN
(
int
)
git_apply_to_tree
(
GIT_EXTERN
(
int
)
git_apply_to_tree
(
git_index
**
out
,
git_index
**
out
,
...
@@ -137,6 +138,7 @@ typedef enum {
...
@@ -137,6 +138,7 @@ typedef enum {
* @param diff the diff to apply
* @param diff the diff to apply
* @param location the location to apply (workdir, index or both)
* @param location the location to apply (workdir, index or both)
* @param options the options for the apply (or null for defaults)
* @param options the options for the apply (or null for defaults)
* @return 0 or an error code
*/
*/
GIT_EXTERN
(
int
)
git_apply
(
GIT_EXTERN
(
int
)
git_apply
(
git_repository
*
repo
,
git_repository
*
repo
,
...
...
include/git2/tree.h
View file @
a2fa9a57
...
@@ -334,6 +334,7 @@ GIT_EXTERN(int) git_treebuilder_insert(
...
@@ -334,6 +334,7 @@ GIT_EXTERN(int) git_treebuilder_insert(
*
*
* @param bld Tree builder
* @param bld Tree builder
* @param filename Filename of the entry to remove
* @param filename Filename of the entry to remove
* @return 0 or an error code
*/
*/
GIT_EXTERN
(
int
)
git_treebuilder_remove
(
GIT_EXTERN
(
int
)
git_treebuilder_remove
(
git_treebuilder
*
bld
,
const
char
*
filename
);
git_treebuilder
*
bld
,
const
char
*
filename
);
...
@@ -463,6 +464,7 @@ typedef struct {
...
@@ -463,6 +464,7 @@ typedef struct {
* @param baseline the tree to base these changes on
* @param baseline the tree to base these changes on
* @param nupdates the number of elements in the update list
* @param nupdates the number of elements in the update list
* @param updates the list of updates to perform
* @param updates the list of updates to perform
* @return 0 or an error code
*/
*/
GIT_EXTERN
(
int
)
git_tree_create_updated
(
git_oid
*
out
,
git_repository
*
repo
,
git_tree
*
baseline
,
size_t
nupdates
,
const
git_tree_update
*
updates
);
GIT_EXTERN
(
int
)
git_tree_create_updated
(
git_oid
*
out
,
git_repository
*
repo
,
git_tree
*
baseline
,
size_t
nupdates
,
const
git_tree_update
*
updates
);
...
...
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