Implement embedded HTTPS Git synchronization

This commit is contained in:
Hermes Agent
2026-08-09 23:54:10 +00:00
parent 410007c012
commit 75ce19da00
14 changed files with 4811 additions and 15 deletions

View File

@@ -45,7 +45,7 @@ impl EntryPath {
DirectoryPath(self.0.parent().map_or_else(PathBuf::new, Path::to_path_buf))
}
fn encrypted_relative_path(&self) -> PathBuf {
pub fn encrypted_relative_path(&self) -> PathBuf {
let mut path = self.0.clone();
let mut file_name = path
.file_name()