pub fn files_from_git_commit(
value: &str,
extensions: Option<Vec<&str>>,
) -> Vec<PathBuf>
Expand description
Returns a vector of PathBuf
containing all files changed in the given Git commit.
ยงArguments
value
- A string slice representing the Git commit hash to check.extension
- AnOption
containing a string slice representing the file extension to filter results by.