Commit d13e7e02 by nulltoken

Added a comment reminding that the gitfo_mkdir_recurs() is far from being fully implemented.

parent e1f8cad0
...@@ -313,6 +313,7 @@ int gitfo_dirent( ...@@ -313,6 +313,7 @@ int gitfo_dirent(
int gitfo_mkdir_recurs(const char *path, int mode) 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; int error;
error = gitfo_mkdir(path, mode); error = gitfo_mkdir(path, mode);
......
...@@ -167,7 +167,7 @@ GIT_EXTERN(void) git_repository_free(git_repository *repo); ...@@ -167,7 +167,7 @@ GIT_EXTERN(void) git_repository_free(git_repository *repo);
* *
* Limits: * Limits:
* - Reinit of an existing directory is not implemented yet. Will blindly return GIT_SUCCESS. * - 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 implemented yet.
* - Config file creation handling is not implemented yet. * - Config file creation handling is not implemented yet.
* *
* @param repo_out pointer to the repo which will be created or reinitialized * @param repo_out pointer to the repo which will be created or reinitialized
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment