diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-12-24 12:57:20 +0200 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-12-24 12:57:20 +0200 |
commit | 1d6fe7304c8609c4f3064464d6b4635f3108879a (patch) | |
tree | 1b98ede3be57ada0a141694a161257f568ee9d18 /src/git_tools.rs | |
parent | 5205e4287ef65797ecd9591484f07da19dc575d1 (diff) | |
download | git_service-1d6fe7304c8609c4f3064464d6b4635f3108879a.tar.gz git_service-1d6fe7304c8609c4f3064464d6b4635f3108879a.tar.bz2 git_service-1d6fe7304c8609c4f3064464d6b4635f3108879a.zip |
chore: add comments
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) } |