svn integration

This commit is contained in:
aaron-jack-manning
2022-08-24 20:38:47 +10:00
parent 17301735c0
commit 71d1744d9b
4 changed files with 24 additions and 12 deletions

31
src/vcs.rs Normal file
View File

@@ -0,0 +1,31 @@
use crate::error;
use std::fs;
use std::path;
use std::process;
pub enum Vcs {
Git,
Svn,
}
pub fn command(args : Vec<String>, vcs : Vcs, vault_folder : &path::Path) -> Result<(), error::Error> {
let mut command = match vcs {
Vcs::Git => process::Command::new("git"),
Vcs::Svn => process::Command::new("svn"),
};
let mut child = command
.current_dir(vault_folder)
.args(args)
.spawn()?;
let _ = child.wait()?;
Ok(())
}
pub fn create_gitignore(vault_folder : &path::Path) -> Result<(), error::Error> {
Ok(fs::write(vault_folder.join(".gitignore"), "state.toml\ntemp.toml\ntemp.md")?)
}