it wooorks
This commit is contained in:
parent
a03c1706d1
commit
b939593445
@ -119,8 +119,10 @@ fn add_gitignore_pattern(term: console::Term, pattern: &String) -> eyre::Result<
|
|||||||
|
|
||||||
// TODO: Run git rm -r --cached --pathspec <pattern> on the .git root
|
// TODO: Run git rm -r --cached --pathspec <pattern> on the .git root
|
||||||
let output = std::process::Command::new("git")
|
let output = std::process::Command::new("git")
|
||||||
|
.arg("rm")
|
||||||
.arg("-r")
|
.arg("-r")
|
||||||
.arg("--cached")
|
.arg("--cached")
|
||||||
|
.arg("--ignore-unmatch")
|
||||||
.arg(pattern)
|
.arg(pattern)
|
||||||
.output()
|
.output()
|
||||||
.context("could not process git remove from index command")?;
|
.context("could not process git remove from index command")?;
|
||||||
@ -134,6 +136,8 @@ fn add_gitignore_pattern(term: console::Term, pattern: &String) -> eyre::Result<
|
|||||||
return Err(eyre::anyhow!("failed to run git index command"));
|
return Err(eyre::anyhow!("failed to run git index command"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
term.write_line("git successfully removed files")?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user