1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// use git2::{IndexAddOption, Repository};
// use crate::ReviseResult;
// pub trait GitAdd {
// fn git_add(repo: &Repository, paths: &[String]) -> ReviseResult<()> {
// let mut index = repo.index()?;
// index.add_all(paths.iter(), IndexAddOption::DEFAULT, None)?;
// index.write()?;
// Ok(())
// }
// }
// #[cfg(test)]
// mod tests {
// use super::*;
// pub struct TestGitAdd {}
// impl GitAdd for TestGitAdd {}
// #[ignore]
// #[test]
// fn test_git_add() {
// let repo = Repository::open(".").unwrap();
// let paths = vec![".".to_string()];
// let result = TestGitAdd::git_add(&repo, &paths);
// assert!(result.is_ok());
// }
// }
use Command;
use crateReviseResult;