diff --git a/crates/git/src/repository.rs b/crates/git/src/repository.rs index ad0798e619..bec3822285 100644 --- a/crates/git/src/repository.rs +++ b/crates/git/src/repository.rs @@ -795,9 +795,8 @@ impl GitRepository for RealGitRepository { cx: AsyncApp, ) -> BoxFuture> { let working_directory = self.working_directory(); - let git_binary_path = self.git_binary_path.clone(); cx.background_spawn(async move { - let mut cmd = new_smol_command(&git_binary_path); + let mut cmd = new_smol_command("git"); cmd.current_dir(&working_directory?) .envs(env) .args(["commit", "--quiet", "-m"])