aboutsummaryrefslogtreecommitdiff
path: root/src/repo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/repo.rs')
-rw-r--r--src/repo.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/repo.rs b/src/repo.rs
index 3dae808..ca1f889 100644
--- a/src/repo.rs
+++ b/src/repo.rs
@@ -1,16 +1,6 @@
use git2::{Commit, Error, Repository as Backend};
use std::collections::HashSet;
-// /// Represents a repository on disk
-// struct Repository {
-// /// We need to be able to query libgit2 later
-// fs_path: String,
-// /// The project name (last path element)
-// name: String,
-// /// The rope path excluding the name
-// path: Vec<String>,
-// }
-
/// A structure that represents an existing bare repo on disk
pub struct Repository {
inner: Backend,