diff options
Diffstat (limited to 'src/git_tools.rs')
-rw-r--r-- | src/git_tools.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/git_tools.rs b/src/git_tools.rs index bd05d07..311aa93 100644 --- a/src/git_tools.rs +++ b/src/git_tools.rs @@ -54,5 +54,8 @@ pub fn make_repo(raw_repo_name: &str, owner_text: &str) -> Result<Repository, Re return Err(RepoCreateError::Internal); } }; + /* TODO + * We want to change the config file to append http.receivepack = true + * */ Ok(repo) } |