Merge pull request #5140 from gitbutlerapp/no-push-hooks

Pass --no-verify to git push
This commit is contained in:
Caleb Owens 2024-10-14 18:45:38 +02:00 committed by GitHub
commit 562ad1493b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -352,7 +352,7 @@ where
Fut: std::future::Future<Output = Option<String>>,
Extra: Send + Clone,
{
let mut args = vec!["push", "--quiet"];
let mut args = vec!["push", "--quiet", "--no-verify"];
let refspec = refspec.to_string();