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
d13e7e02
Commit
d13e7e02
authored
Dec 17, 2010
by
nulltoken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a comment reminding that the gitfo_mkdir_recurs() is far from being fully implemented.
parent
e1f8cad0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
+2
-1
src/fileops.c
+1
-0
src/git2/repository.h
+1
-1
No files found.
src/fileops.c
View file @
d13e7e02
...
...
@@ -313,6 +313,7 @@ int gitfo_dirent(
int
gitfo_mkdir_recurs
(
const
char
*
path
,
int
mode
)
{
//TODO: Implement recursive building of the parent tree structure (This would have to work on both Linux and Windows).
int
error
;
error
=
gitfo_mkdir
(
path
,
mode
);
...
...
src/git2/repository.h
View file @
d13e7e02
...
...
@@ -167,7 +167,7 @@ GIT_EXTERN(void) git_repository_free(git_repository *repo);
*
* Limits:
* - Reinit of an existing directory is not implemented yet. Will blindly return GIT_SUCCESS.
* - The parent directory structure of the repository has to already exist. Recursive building of the parent tree structure is not implmented yet.
* - The parent directory structure of the repository has to already exist. Recursive building of the parent tree structure is not impl
e
mented yet.
* - Config file creation handling is not implemented yet.
*
* @param repo_out pointer to the repo which will be created or reinitialized
...
...
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