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
9a9de29d
Commit
9a9de29d
authored
Apr 23, 2013
by
Carlos Martín Nieto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document the odb backend constructors
parent
6c1b6b7a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
1 deletions
+33
-1
include/git2/odb_backend.h
+33
-1
No files found.
include/git2/odb_backend.h
View file @
9a9de29d
...
...
@@ -19,11 +19,43 @@
*/
GIT_BEGIN_DECL
/*
*
/*
* Constructors for in-box ODB backends.
*/
/**
* Create a backend for the packfiles.
*
* @param out location to store the odb backend pointer
* @param objects_dir the Git repository's objects directory
*
* @return 0 or an error code
*/
GIT_EXTERN
(
int
)
git_odb_backend_pack
(
git_odb_backend
**
out
,
const
char
*
objects_dir
);
/**
* Create a backend for loose objects
*
* @param out location to store the odb backend pointer
* @param objects_dir the Git repository's objects directory
* @param compression_level zlib compression level to use
* @param do_fsync whether to do an fsync() after writing (currently ignored)
*
* @return 0 or an error code
*/
GIT_EXTERN
(
int
)
git_odb_backend_loose
(
git_odb_backend
**
out
,
const
char
*
objects_dir
,
int
compression_level
,
int
do_fsync
);
/**
* Create a backend out of a single packfile
*
* This can be useful for inspecting the contents of a single
* packfile.
*
* @param out location to store the odb backend pointer
* @param index_file path to the packfile's .idx file
*
* @return 0 or an error code
*/
GIT_EXTERN
(
int
)
git_odb_backend_one_pack
(
git_odb_backend
**
out
,
const
char
*
index_file
);
/** Streaming mode */
...
...
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