Compare commits

...

1 Commits

Author SHA1 Message Date
Cole Miller
ee53b805f0 fix 2025-12-10 18:00:48 -05:00
2 changed files with 1 additions and 6 deletions

View File

@@ -1819,7 +1819,6 @@ impl GitRepository for RealGitRepository {
.args(["commit", "--quiet", "-m"])
.arg(&message.to_string())
.arg("--cleanup=strip")
.arg("--no-verify")
.stdout(smol::process::Stdio::piped())
.stderr(smol::process::Stdio::piped());

View File

@@ -4570,17 +4570,13 @@ impl Repository {
name_and_email: Option<(SharedString, SharedString)>,
options: CommitOptions,
askpass: AskPassDelegate,
cx: &mut App,
_cx: &mut App,
) -> oneshot::Receiver<Result<()>> {
let id = self.id;
let askpass_delegates = self.askpass_delegates.clone();
let askpass_id = util::post_inc(&mut self.latest_askpass_id);
let rx = self.run_hook(RunHook::PreCommit, cx);
self.send_job(Some("git commit".into()), move |git_repo, _cx| async move {
rx.await??;
match git_repo {
RepositoryState::Local(LocalRepositoryState {
backend,