pub fn git_add_all() -> Result<bool>
Stage all changes.
Similar to git add -A.
git add -A
Returns Ok(true) if files were successfully staged, Ok(false) if there were no files to stage, or an error if staging failed.
Ok(true)
Ok(false)